-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1007 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1007 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
34
35
36
37
{
"name": "weicui",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -k -n server,web -c green,cyan \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "tsx watch server/index.ts",
"dev:web": "vite --host 127.0.0.1",
"sync": "tsx server/cli.ts sync",
"build": "tsc -b && vite build",
"typecheck": "tsc -b --pretty false"
},
"dependencies": {
"@vitejs/plugin-react": "^5.0.0",
"better-sqlite3": "^11.10.0",
"concurrently": "^9.2.0",
"cors": "^2.8.5",
"execa": "^9.6.0",
"express": "^5.1.0",
"lucide-react": "^0.468.0",
"playwright": "^1.60.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsx": "^4.20.0",
"vite": "^6.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.3",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.7.0"
}
}