-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1010 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
{
"name": "bears-project-13",
"version": "0.0.1",
"description": "Chingu Voyage Project",
"main": "./server/index.js",
"scripts": {
"start": "node ./server/index.js",
"start-server": "cd ./server; nodemon ./server/index.js",
"start-client": "cd ./client; npm start",
"start-dev": "npm-run-all -p start-server start-client",
"install": "cd ./server; npm install; cd ../client; npm install",
"heroku-postbuild": "mkdir build; cd client; npm run build; mv -v ./build/* ../build; rm -rf ../client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyages/bears-project-13.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chingu-voyages/bears-project-13/issues"
},
"homepage": "https://github.com/chingu-voyages/bears-project-13#readme",
"dependencies": {},
"devDependencies": {
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5"
}
}