-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
70 lines (70 loc) · 2.16 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
{
"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": "2.8.0",
"@soerenmartius/vue3-clipboard": "0.1.2",
"leaflet": "git+https://github.com/JLyne/Leaflet.git#af5b848e260c740de541acb6460611fedb78d1d7",
"lodash.debounce": "4.0.8",
"modern-normalize": "1.1.0",
"vue": "3.2.37",
"vuex": "4.1.0"
},
"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.3",
"@types/lodash.debounce": "4.0.7",
"@types/node": "20.4.1",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"@vitejs/plugin-vue": "4.2.3",
"@vue/compiler-dom": "3.2.37",
"@vue/eslint-config-typescript": "11.0.3",
"@vue/test-utils": "2.4.0",
"c8": "8.0.0",
"cpy-cli": "5.0.0",
"eslint": "8.44.0",
"eslint-plugin-vue": "9.15.1",
"jsdom": "^21.1.0",
"rimraf": "5.0.1",
"rollup-plugin-analyzer": "4.0.0",
"sass": "1.63.6",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"vite": "4.4.2",
"vite-plugin-svg-sprite-component": "1.0.10",
"vitest": "0.31.0",
"vue-tsc": "1.8.4"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {}
},
"packageManager": "[email protected]"
}