-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.97 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
{
"name": "pre",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"cross-env PLATFORM=Windows npm run start-server\"",
"start-server": "if \"%PLATFORM%\"==\"Windows\" (cd python && waitress-serve --host=0.0.0.0 --port=5174 app:app) else (cd python && gunicorn -w 4 -b 0.0.0.0:5174 --access-logfile - --timeout 3600 app:app)",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@types/bootstrap": "^5.2.10",
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"d3": "^7.9.0",
"echarts": "^5.5.1",
"jquery": "^3.7.1",
"jquery-ui": "^1.13.3",
"leaflet": "^1.9.4",
"leaflet.heat": "^0.2.0",
"progress": "^2.0.3",
"typings": "^2.1.1",
"vue": "^3.4.29",
"vue-echarts": "^6.7.3",
"vue-router": "^4.3.3",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@babel/types": "^7.24.7",
"@tsconfig/node20": "^20.1.4",
"@types/cli-progress": "^3.11.6",
"@types/d3": "^7.4.3",
"@types/d3-dsv": "^3.0.7",
"@types/echarts": "^4.9.22",
"@types/jquery": "^3.5.30",
"@types/leaflet": "^1.9.12",
"@types/leaflet.heat": "^0.2.4",
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.5",
"@types/rollup": "^0.54.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"naive-ui": "^2.38.2",
"npm-run-all2": "^6.2.0",
"postcss": "^8.4.39",
"rollup": "^4.18.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"vite": "^5.3.1",
"vue-tsc": "^2.0.21"
}
}