-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 850 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
30
31
32
33
{
"name": "canview",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx --env-file=.env server/index.ts",
"test": "node --import tsx --test tests/*.test.ts",
"build": "vite build",
"preview": "NODE_ENV=production tsx --env-file=.env server/index.ts"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.18.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.18.1",
"@types/three": "^0.184.1",
"@vitejs/plugin-react": "^5.0.0",
"express": "^4.19.2",
"openai": "^6.42.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"three": "^0.184.0",
"vite": "^7.0.0",
"ws": "^8.17.1"
}
}