LiveAtlas/package.json
2022-06-23 21:30:05 +01:00

71 lines
2.1 KiB
JSON

{
"name": "live-atlas",
"version": "3.1.0",
"private": false,
"scripts": {
"serve": "vite",
"preview": "vite preview --port 8082",
"test": "vitest",
"coverage": "vitest run --coverage",
"clean": "rimraf dist java/target/resources",
"copy": "cpy plugin.yml dist java/target/resources --parents && rimraf java/target/resources/assets/*.svg",
"build": "npm run clean && vue-tsc --noEmit && vite build --out-dir dist && npm-run-all copy mvn",
"lint": "eslint --ext .ts,.vue src",
"lint:fix": "eslint -ext .ts,.vue src --fix",
"mvn": "cd java && mvn package && cd ..",
"postinstall": "patch-package"
},
"dependencies": {
"@kyvg/vue3-notification": "2.3.0",
"@soerenmartius/vue3-clipboard": "^0.1",
"leaflet": "git+https://github.com/JLyne/Leaflet.git#843eb3124492dc48245cd187c6dc94c2f33b65c1",
"lodash.debounce": "^4.0.8",
"modern-normalize": "^1.1.0",
"vue": "^3.2.37",
"vuex": "^4.0"
},
"devDependencies": {
"@types/dynmap": "^3.1.1",
"@types/leaflet": "1.7.11",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28",
"@typescript-eslint/parser": "^5.28",
"@vitejs/plugin-vue": "^2.3",
"@vue/compiler-sfc": "^3.2.37",
"@vue/eslint-config-typescript": "^10.0",
"@vue/test-utils": "^2.0.0",
"@vue/vue3-jest": "^27.0.0",
"c8": "^7.11.3",
"cpy-cli": "^4.1.0",
"eslint": "^8.17",
"eslint-plugin-vue": "^8.7",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4",
"rimraf": "^3.0.2",
"rollup-plugin-analyzer": "^4.0",
"sass": "^1.52",
"ts-node": "^10.8.1",
"typescript": "^4.7",
"vite": "2.9.12",
"vite-plugin-svg-sprite-component": "^1.0",
"vitest": "^0.15.2",
"vue-tsc": "0.37.9"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {}
}
}