-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (22 loc) · 766 Bytes
/
package.json
File metadata and controls
23 lines (22 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "cp-hub",
"version": "1.0.0",
"description": "CP-Hub — IIT Guwahati Coding Club website",
"scripts": {
"build": "cd frontend && npm run build",
"start": "cd backend && npm start",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm start",
"install:all": "cd frontend && npm install && cd ../backend && npm install",
"vercel-build": "npm install --prefix backend && npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": ["competitive-programming", "react", "firebase", "cp-hub"],
"author": "CodingClub-IITG",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.1.0",
"express": "^5.1.0",
"firebase-admin": "^13.10.0"
}
}