-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "dcc-express",
"private": true,
"type": "module",
"version": "1.0.0",
"workspaces": [
"client",
"server"
],
"scripts": {
"dev:client": "npm --workspace client run dev",
"dev:server": "npm --workspace server run dev",
"build:client": "npm --workspace client run build",
"build:server": "npm --workspace server run build",
"build": "npm run build:client && npm run build:server",
"start": "node ./dist/server/server/src/index.js"
},
"dependencies": {
"@mantine/core": "^9.1.1",
"@mantine/form": "^9.1.1",
"@mantine/hooks": "^9.1.1",
"@mantine/notifications": "^9.1.1",
"@tabler/icons-react": "^3.41.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"multer": "^2.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.14.0",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^25.5.2",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.7"
}
}