forked from stanleycyang/react-bible-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "react-bible-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"es6-object-assign": "^1.0.1",
"express": "^4.13.3",
"jade": "^1.11.0",
"jquery": "^2.2.0",
"material-ui": "^0.14.4",
"morgan": "^1.6.1",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-motion": "^0.4.2",
"react-tap-event-plugin": "^0.2.2",
"whatwg-fetch": "^0.10.1"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-regenerator": "^6.6.5",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"cross-env": "^1.0.7",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.15.0",
"eventsource-polyfill": "^0.9.6",
"rimraf": "^2.5.0",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"lint": "eslint client",
"clean": "rimraf static/dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack/prod.config.js",
"build": "npm run clean && npm run build:webpack"
},
"keywords": [],
"author": "Stanley C Yang <stanley@stanleycyang.com> (http://www.stanleycyang.com)",
"license": "MIT"
}