-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 961 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
{
"scripts": {
"build": "cd frontend && npm run build",
"install-client": "cd frontend && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"server": "cd backend && nodemon server.js",
"develop": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix frontend\"",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix frontend\""
},
"name": "dreamyextension",
"description": "There are 3 parts to this repo:",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/DashBarkHuss/dreamy_extension.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DashBarkHuss/dreamy_extension/issues"
},
"homepage": "https://github.com/DashBarkHuss/dreamy_extension#readme",
"dependencies": {
"concurrently": "^7.1.0",
"nodemon": "^2.0.15"
}
}