forked from jaredpalmer/razzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-production-starter",
"version": "0.2.0",
"description": "Isomorphic React Starter with Redux, React Router, Redial, Aphrodite, Express, Webpack.",
"scripts": {
"test": "npm run clean && npm run build && cross-env NODE_ENV=test ./node_modules/mocha/bin/mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch",
"coverage": "nyc npm test",
"start": "cross-env NODE_ENV=development node ./server",
"start:prod": "cross-env NODE_ENV=production node ./build/server.js",
"heroku-postbuild": "npm run build",
"build": "webpack -p --config ./tools/webpack.client.prod.js && webpack -p --config ./tools/webpack.server.prod.js",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredpalmer/react-production-starter.git"
},
"keywords": [],
"author": "jaredpalmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredpalmer/react-production-starter/issues"
},
"homepage": "https://github.com/jaredpalmer/react-production-starter#readme",
"dependencies": {
"aphrodite": "^0.5.0",
"assets-webpack-plugin": "^3.3.0",
"axios": "^0.14.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "^6.9.0",
"body-parser": "^1.14.2",
"compression": "^1.6.2",
"cross-env": "2.0.1",
"eslint-config-standard": "^6.0.0",
"express": "^4.13.4",
"helmet": "^2.0.0",
"history": "^3.0.0",
"hpp": "^0.2.0",
"json-loader": "^0.5.4",
"morgan": "^1.6.1",
"opn": "^4.0.2",
"react-dom": "^15.2.1",
"react-helmet": "^3.1.0",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"react": "^15.2.1",
"redial": "^0.4.1",
"redux-thunk": "^2.1.0",
"redux": "^3.3.1",
"source-map-support": "^0.4.0",
"standard-loader": "^5.0.0",
"standard": "^8.0.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack": "^1.13.1"
},
"devDependencies": {
"babel-plugin-istanbul": "^2.0.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"chalk": "^1.1.3",
"mocha": "^3.0.2",
"nyc": "^8.1.0"
},
"standard": {
"parser": "babel-eslint"
},
"engines": {
"node": "6.2.2"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"exclude": [
"**/migrations/**",
"**/tools/**",
"**/test/**"
]
}
}