-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 972 Bytes
/
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
31
32
{
"name": "khub",
"version": "1.0.0",
"description": "All in one hub for useful resources and QnAs for students.",
"main": "index.js",
"engines": {
"node": "14.x"
},
"dependencies": {
"concurrently": "^6.4.0",
"make-dir": "^3.1.0",
"mimic-response": "^1.0.1",
"nodemon": "^2.0.15"
},
"devDependencies": {},
"scripts": {
"server": "cd backend && npm install && nodemon index",
"frontend": "cd frontend && npm install && npm run start",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run frontend\" ",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashish-hacker/KHub.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashish-hacker/KHub/issues"
},
"homepage": "https://github.com/ashish-hacker/KHub#readme"
}