-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.77 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
56
57
58
59
60
61
62
{
"name": "communication-dashboard",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"node server.cjs\"",
"build": "tsc && vite build",
"vercel-build": "tsc && vite build",
"server": "node server.cjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test-clickhouse": "node test-clickhouse.js",
"build:ts": "tsc",
"test-clickhouse-direct": "node test-clickhouse-direct.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clickhouse/client": "^0.2.10",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.8",
"@mui/material": "^6.4.8",
"@mui/x-date-pickers": "^7.28.0",
"@types/node": "^22.14.0",
"@types/papaparse": "^5.3.15",
"@types/styled-components": "^5.1.34",
"axios": "^1.8.4",
"bull": "^4.16.5",
"cors": "^2.8.5",
"csv-parse": "^5.6.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"firebase": "^11.4.0",
"google-auth-library": "^9.4.2",
"googleapis": "^146.0.0",
"multer": "^1.4.5-lts.2",
"next": "^15.3.0",
"papaparse": "^5.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.4.0",
"styled-components": "^6.1.16"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^8.2.2",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.2"
}
}