-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 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
36
37
38
39
40
41
42
{
"name": "workspace",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf lib public",
"compile": "npm run compile:client && npm run compile:server",
"compile:client": "cross-env NODE_ENV=production webpack",
"compile:server": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run compile",
"start:dev": "babel-node src/server",
"start:prod": "node lib/server",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"heroku:deploy": "heroku builds:create",
"deploy": "npm install && npm prune --production && npm run heroku:deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chokidar": "^1.4.3",
"cross-env": "^1.0.7",
"rimraf": "^2.5.2",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-merge": "^0.8.4"
},
"dependencies": {
"express": "^4.13.4",
"if-env": "^1.0.0",
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}