-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 749 Bytes
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
{
"name": "confql-map",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:prod": "tsc && vite build --mode production",
"preview": "vite preview",
"clean": "rm -rf dist",
"deploy:netlify": "npm run clean && npm run build:prod && echo 'Build complete! Upload dist/ folder to Netlify'"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"terser": "^5.43.1",
"typescript": "~5.8.3",
"vite": "^7.1.2",
"wrangler": "^4.32.0"
},
"dependencies": {
"echarts": "^6.0.0",
"js-yaml": "^4.1.0",
"fast-xml-parser": "^4.3.2"
}
}