generated from hatchways/express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.1 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
31
32
33
34
35
{
"name": "team-fruit-loops",
"version": "1.0.0",
"description": "ClueWords - an online game to play with friends",
"scripts": {
"dev": "concurrently \"cd client && npm run start\" \"cd server && npm run dev\"",
"build": "concurrently \"cd client && npm install && npm run build\" \"cd server && npm install\"",
"heroku-postbuild": "npm install && npm run build",
"deploy": "git push heroku dev",
"web": "node server/bin/www",
"local": "heroku local web",
"heroku-configs": "heroku config:push",
"heroku-logs": "heroku logs --tail",
"heroku-open": "heroku open",
"heroku-restart": "heroku restart",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hatchways/team-fruit-loops.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hatchways/team-fruit-loops/issues"
},
"homepage": "https://github.com/hatchways/team-fruit-loops#readme",
"dependencies": {
"concurrently": "^5.3.0"
},
"engines": {
"node": "14.15.1"
}
}