LiveAtlas/package.json

69 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2020-11-20 18:43:30 +00:00
{
2020-12-17 14:48:36 +00:00
"name": "live-atlas",
2022-06-18 21:24:33 +00:00
"version": "3.1.0",
2020-11-20 18:43:30 +00:00
"scripts": {
2021-05-15 19:25:03 +00:00
"serve": "vite",
"preview": "vite preview --port 8082",
2022-06-21 22:26:32 +00:00
"test": "vitest",
"coverage": "vitest run --coverage",
2021-10-01 12:37:28 +00:00
"clean": "rimraf dist java/target/resources",
2022-07-08 14:43:18 +00:00
"build": "yarn run clean && vue-tsc --noEmit && vite build --out-dir dist && rimraf dist/live-atlas/assets/*.svg && yarn run mvn",
2021-05-27 13:25:33 +00:00
"lint": "eslint --ext .ts,.vue src",
"lint:fix": "eslint -ext .ts,.vue src --fix",
2022-07-08 14:43:18 +00:00
"mvn": "cpy plugin.yml dist java/target/resources --parents && cd java && mvn package && cd ..",
2021-05-25 13:21:37 +00:00
"postinstall": "patch-package"
2020-11-20 18:43:30 +00:00
},
2021-05-25 12:15:47 +00:00
"dependencies": {
2022-07-08 14:02:48 +00:00
"@kyvg/vue3-notification": "patch:@kyvg/vue3-notification@2.3.0#patches/@kyvg+vue3-notification+2.3.0.patch",
"@soerenmartius/vue3-clipboard": "^0.1",
2022-06-17 11:58:43 +00:00
"leaflet": "git+https://github.com/JLyne/Leaflet.git#843eb3124492dc48245cd187c6dc94c2f33b65c1",
2022-01-17 15:15:00 +00:00
"lodash.debounce": "^4.0.8",
2022-07-08 14:02:48 +00:00
"modern-normalize": "patch:modern-normalize@1.1.0#patches/modern-normalize+1.1.0.patch",
"vue": "^3.2.37",
"vuex": "^4.0"
2021-05-25 12:15:47 +00:00
},
"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",
2022-07-08 14:02:48 +00:00
"@vue/reactivity": "^3.2.37",
"@vue/runtime-core": "^3.2.37",
"@vue/test-utils": "^2.0.0",
2022-06-21 22:26:32 +00:00
"c8": "^7.11.3",
"cpy-cli": "^4.1.0",
"eslint": "^8.17",
"eslint-plugin-vue": "^8.7",
2021-10-01 12:37:28 +00:00
"rimraf": "^3.0.2",
"rollup-plugin-analyzer": "^4.0",
"sass": "^1.52",
"ts-node": "^10.8.1",
2022-06-17 12:52:44 +00:00
"typescript": "^4.7",
"vite": "2.9.12",
"vite-plugin-svg-sprite-component": "^1.0",
2022-06-21 22:26:32 +00:00
"vitest": "^0.15.2",
"vue-tsc": "0.37.9"
2020-11-20 18:43:30 +00:00
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
2020-11-20 21:47:56 +00:00
"eslint:recommended",
"@vue/typescript"
2020-11-20 18:43:30 +00:00
],
"parserOptions": {
2020-11-20 21:47:56 +00:00
"parser": "@typescript-eslint/parser"
2020-11-20 18:43:30 +00:00
},
"rules": {}
2022-07-08 14:02:48 +00:00
},
"packageManager": "yarn@3.2.1"
2020-11-20 18:43:30 +00:00
}