-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
72
73
{
"name": "sustainability-map",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build-stage": "vite build --mode staging",
"serve": "vite preview",
"prebuild": "node util/build/*.mjs",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"prettier": "prettier --write **/*.{js,ts,tsx,json,html,md,css,scss,vue}",
"format": "npm-run-all --continue-on-error prettier \"lint -- --fix\""
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"axios": "^1.7.9",
"element-plus": "^2.9.0",
"hjson": "^3.2.2",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"npm-run-all": "^4.1.5",
"osmtogeojson": "^3.0.0-beta.5",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.13",
"vue-i18n": "^9.0.0",
"vue-leaflet": "^0.1.0",
"vue-router": "^4.2.0",
"vuex": "^4.1.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-strict-vue": "^1.0.0",
"eslint-plugin-vue": "^8.7.1",
"prettier": "^2.7.1",
"sass": "^1.82.0",
"vite": "^6.0.4"
},
"overrides": {
"@xmldom/xmldom": "^0.8.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}