-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 KB
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": "frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix",
"lint-check": "eslint .",
"format": "prettier . --write",
"format-check": "prettier . --check"
},
"dependencies": {
"@primevue/themes": "^4.3.6",
"@tanstack/vue-query": "^5.59.16",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"axios": "^1.10.0",
"leaflet": "^1.9.4",
"plotly.js-dist": "^3.0.1",
"primeicons": "^7.0.0",
"primevue": "^4.3.6",
"tailwindcss-primeui": "^0.6.1",
"uuid": "^11.1.0",
"vue": "^3.5.17",
"vue-router": "^4.5.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@primevue/auto-import-resolver": "^4.1.1",
"@tsconfig/node20": "^20.1.6",
"@types/leaflet": "^1.9.20",
"@types/node": "^24.0.15",
"@types/plotly.js": "^3.0.2",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.31.0",
"eslint-plugin-vue": "^9.29.1",
"npm-run-all2": "^8.0.4",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.14",
"typescript": "~5.8.3",
"unplugin-vue-components": "^28.8.0",
"vite": "^7.0.5",
"vue-tsc": "^3.0.3"
}
}