-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "riosconciencia.visor",
"version": "1.1.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build:dev && npm run build:pre && npm run build:prod",
"build:dev": "vite build --mode development",
"build:pre": "vite build --mode pre",
"build:prod": "vite build --mode prod",
"serve": "vite preview --port 8080",
"serve:dev": "vite preview --port 8080 --mode development",
"deploy-patch": "npm version patch -m v%s",
"deploy-minor": "npm version minor -m v%s",
"deploy-major": "npm version major -m v%s",
"preversion": "npm run lint",
"version": "git add -A",
"postversion": "git push origin main && git push origin --tags",
"lint": "npm run lint:code && npm run lint:style",
"lint:style": "stylelint src/**/*.{vue,htm,html,css,sss,less,scss} --fix",
"lint:code": "eslint src/**/*.{vue,htm,html,js,json} --fix",
"stylelint-check": "stylelint-config-prettier-scss-check",
"test": "vitest --ui",
"coverage": "vitest run --coverage"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"axios": "^1.7.2",
"core-js": "^3.8.2",
"leaflet": "^1.9.4",
"leaflet-easybutton": "^2.4.0",
"leaflet-extra-markers": "^1.2.2",
"leaflet-groupedlayercontrol": "^0.6.1",
"material-icons": "^1.13.12",
"pinia": "^2.1.7",
"sweet-modal-vue-3": "^0.3.0",
"vue": "^3.4.27",
"vue-matomo": "^4.2.0",
"vue-router": "^4.3.3",
"vuesax3": "^4.2.1",
"zingchart": "^2.9.14"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.24.1",
"@html-eslint/parser": "^0.24.1",
"@iconify-json/mdi": "^1.1.66",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/test-utils": "^2.4.6",
"c8": "^9.1.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.26.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"sass": "^1.77.2",
"sass-loader": "^14.2.1",
"stylelint": "^16.5.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-prettier": "^5.0.0",
"vite": "^5.2.11",
"vite-plugin-compression": "^0.5.1"
}
}