-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.26 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.26 KB
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
{
"name": "coding-interview-platform",
"version": "1.0.0",
"description": "Real-time collaborative coding interview platform",
"private": true,
"scripts": {
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"start": "cd backend && npm start",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"test:watch": "concurrently \"npm run test:backend:watch\" \"npm run test:frontend:watch\"",
"test:backend:watch": "cd backend && npm run test:watch",
"test:frontend:watch": "cd frontend && npm run test:watch",
"test:coverage": "npm run test:backend:coverage && npm run test:frontend:coverage",
"test:backend:coverage": "cd backend && npm run test:coverage",
"test:frontend:coverage": "cd frontend && npm run test:coverage"
},
"keywords": ["coding", "interview", "collaborative", "real-time"],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}