-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 952 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 952 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
30
31
{
"name": "coincheckcrypto",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"if-env": "^1.0.4",
"npm-run-all": "^4.1.1",
"pusher": "^1.5.1",
"pusher-js": "^4.1.0"
},
"scripts": {
"start": "if-env NODE_ENV=production && yarn run start:prod || yarn run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"node --ignore 'client/*'\" \"yarn run client\"",
"client": "cd client && yarn run start",
"install": "cd client && yarn install",
"build": "cd client && yarn build",
"heroku-postbuild": "yarn run build"
},
"description": "This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).",
"main": "server.js",
"devDependencies": {
"concurrently": "^4.1.0"
},
"keywords": [],
"author": "Justin Kook",
"license": "MIT"
}