-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 773 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 773 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
{
"name": "traecampus",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "concurrently -n \"client,server\" \"npm run client-install\" \"npm run server-install\"",
"client-install": "cd client && npm install",
"server-install": "cd server && npm install",
"start": "concurrently -n \"client,server\" \"cd client && npm run dev\" \"cd server && npm run dev\"",
"dev": "npm run start",
"setup": "npm install && npm run postinstall"
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.0.9"
},
"dependencies": {
"axios": "^1.8.1",
"init": "^0.1.2",
"sonner": "^2.0.1",
"uuid": "^11.1.0"
}
}