-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "survey-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:bg": "tail -f /dev/null | vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"quality": "npm run lint && npm run build"
},
"dependencies": {
"@duckdb/duckdb-wasm": "^1.30.0",
"@fortawesome/fontawesome-svg-core": "^7.0.1",
"@fortawesome/free-solid-svg-icons": "^7.0.1",
"@fortawesome/react-fontawesome": "^3.0.2",
"@tailwindcss/postcss": "^4.1.13",
"d3-geo": "^3.1.1",
"express": "^5.1.0",
"idb": "^8.0.3",
"prop-types": "^15.8.1",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"react-is": "^19.1.2",
"recharts": "^3.1.2",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.13",
"terser": "^5.44.0",
"vite": "^7.1.2"
}
}