-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 937 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 937 Bytes
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
{
"name": "webm8-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "cd server && node server.js",
"start:dev": "concurrently \"cd server && nodemon server.js\" \"npm run client\"",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"client": "cd client && npm run start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mtrupiano/webm8-react.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mtrupiano/webm8-react/issues"
},
"homepage": "https://github.com/mtrupiano/webm8-react#readme",
"devDependencies": {
"concurrently": "^5.3.0"
}
}