forked from JLyne/LiveAtlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "live-atlas",
"version": "1.2.3",
"private": false,
"scripts": {
"serve": "vite",
"preview": "vite preview --port 8082",
"build": "vue-tsc --noEmit && vite build --out-dir dist",
"lint": "eslint --ext .ts,.vue src",
"lint:fix": "eslint -ext .ts,.vue src --fix",
"postinstall": "patch-package",
"deploy": "npm run build && rsync -r --progress ./dist/* houju:/var/www/dynmap/"
},
"dependencies": {
"@kyvg/vue3-notification": "2.3.0",
"@soerenmartius/vue3-clipboard": "^0.1",
"focus-visible": "^5.2",
"leaflet": "1.7.1",
"normalize-scss": "^7.0",
"vue": "^3.1",
"vuex": "^4.0"
},
"devDependencies": {
"@types/leaflet": "1.7.4",
"@typescript-eslint/eslint-plugin": "^4.28",
"@typescript-eslint/parser": "^4.28",
"@vitejs/plugin-vue": "^1.2",
"@vue/compiler-sfc": "^3.1",
"@vue/eslint-config-typescript": "^7.0",
"eslint": "^7.31",
"eslint-plugin-vue": "^7.14",
"patch-package": "^6.4",
"rollup-plugin-analyzer": "^4.0",
"sass": "^1.35",
"typescript": "^4.3",
"vite": "^2.4",
"vite-plugin-svg-sprite-component": "^1.0",
"vue-tsc": "0.2.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {}
}
}