forked from JLyne/LiveAtlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "live-atlas",
"version": "3.1.0",
"scripts": {
"serve": "vite",
"preview": "vite preview --port 8082",
"test": "vitest",
"coverage": "vitest run --coverage",
"clean": "rimraf dist java/target/resources",
"build": "yarn run clean && vue-tsc --noEmit && vite build --out-dir dist && rimraf dist/live-atlas/assets/*.svg && yarn run mvn",
"lint": "eslint --ext .ts,.vue src",
"lint:fix": "eslint -ext .ts,.vue src --fix",
"mvn": "cpy plugin.yml dist java/target/resources --parents && cd java && mvn package && cd .."
},
"dependencies": {
"@kyvg/vue3-notification": "*",
"@soerenmartius/vue3-clipboard": "0.1.2",
"leaflet": "git+https://github.com/JLyne/Leaflet.git#843eb3124492dc48245cd187c6dc94c2f33b65c1",
"lodash.debounce": "4.0.8",
"modern-normalize": "*",
"vue": "3.2.39",
"vuex": "4.0.2"
},
"resolutions": {
"@kyvg/vue3-notification": "patch:@kyvg/[email protected]#patches/@kyvg+vue3-notification+2.3.0.patch",
"modern-normalize": "patch:[email protected]#patches/modern-normalize+1.1.0.patch"
},
"devDependencies": {
"@types/dynmap": "3.1.2",
"@types/leaflet": "1.9.0",
"@types/lodash.debounce": "4.0.7",
"@types/node": "18.7.14",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"@vitejs/plugin-vue": "3.1.0",
"@vue/compiler-sfc": "3.2.39",
"@vue/eslint-config-typescript": "11.0.1",
"@vue/reactivity": "3.2.39",
"@vue/runtime-core": "3.2.39",
"@vue/test-utils": "2.0.2",
"c8": "7.12.0",
"cpy-cli": "4.2.0",
"eslint": "8.23.1",
"eslint-plugin-vue": "9.4.0",
"rimraf": "3.0.2",
"rollup-plugin-analyzer": "4.0.0",
"sass": "1.56.1",
"ts-node": "10.9.1",
"typescript": "4.8.2",
"vite": "3.0.9",
"vite-plugin-svg-sprite-component": "1.0.10",
"vitest": "0.23.2",
"vue-tsc": "0.40.13"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {}
},
"packageManager": "[email protected]"
}