-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
30 lines (30 loc) · 1.05 KB
/
package.json
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
{
"name": "redesigned-tt",
"version": "1.0.0",
"description": "a webapp for scheduling timetable",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pre-install": "npm install -g nodemon concurrently",
"backend-node": "cd backend && nodemon index.js",
"backend-node-with-install": "cd backend && npm install && nodemon index.js",
"frontend-with-install": "cd frontend && npm install && npm start",
"frontend": "cd frontend && npm start ",
"start": "concurrently \"npm run backend-node\" \"npm run frontend\"",
"start-with-install": "concurrently \"npm run backend-node-with-install\" \"npm run frontend-with-install\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiHarsh/redesigned-tt.git"
},
"author": "MiHarsh",
"license": "ISC",
"bugs": {
"url": "https://github.com/MiHarsh/redesigned-tt/issues"
},
"homepage": "https://github.com/MiHarsh/redesigned-tt#readme",
"dependencies": {
"firebase": "^9.9.0",
"firebase-admin": "^11.4.0"
}
}