-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 759 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "campus-whisper",
"version": "1.0.0",
"description": "Campus Whisper – Anonymous campus chat (full-stack)",
"scripts": {
"install:frontend": "cd frontend_campus_whisper && npm install",
"install:backend": "cd backend_campus_whisper && npm install",
"install:all": "npm run install:backend && npm run install:frontend",
"build:frontend": "cd frontend_campus_whisper && npm run build",
"build": "npm run install:frontend && npm run build:frontend",
"start": "cd backend_campus_whisper && node server.js",
"dev:backend": "cd backend_campus_whisper && npm run dev",
"dev:frontend": "cd frontend_campus_whisper && npm run dev",
"keep-alive": "node keep-alive.js"
},
"engines": {
"node": ">=18"
}
}