-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.46 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
{
"name": "webpack-express-boilerplate",
"version": "0.1.0",
"description": "A boilerplate for running a Webpack workflow in Node express",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/christianalfoni/webpack-express-boilerplate.git"
},
"keywords": [
"express",
"webpack",
"node"
],
"author": "Christian Alfoni",
"license": "MIT",
"bugs": {
"url": "https://github.com/christianalfoni/webpack-express-boilerplate/issues"
},
"homepage": "https://github.com/christianalfoni/webpack-express-boilerplate",
"scripts": {
"test": "",
"dev": "node server",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"eslint": "eslint .",
"jscs": "jscs ."
},
"dependencies": {
"axios": "0.14.0",
"babel-cli": "6.4.0",
"lodash": "^4.16.6",
"material-ui": "0.15.4",
"moment": "2.15.1",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"react-router": "2.8.1",
"react-tap-event-plugin": "1.0.0",
"redux": "3.6.0",
"redux-form": "6.0.5",
"redux-form-material-ui": "4.0.1",
"react-ga": "^1.4.1",
"redux-promise": "0.5.3",
"redux-thunk": "2.1.0"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-eslint": "4.1.8",
"babel-jscs": "2.0.5",
"babel-loader": "6.2.3",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-react-hmre": "1.1.0",
"babel-preset-stage-0": "6.3.13",
"chai": "3.2.0",
"copy-webpack-plugin": "3.0.1",
"cross-env": "1.0.7",
"css-loader": "^0.26.1",
"eslint": "3.7.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.3.0",
"express": "4.13.3",
"extract-text-webpack-plugin": "0.8.2",
"file-loader": "0.8.5",
"html-webpack-plugin": "1.6.1",
"jscs": "2.1.1",
"jsdom": "6.5.1",
"json-loader": "0.5.3",
"mocha": "2.3.3",
"mocha-jsdom": "1.0.0",
"postcss-loader": "^1.2.2",
"react-addons-test-utils": "0.14.3",
"react-transform-hmr": "1.0.0",
"rimraf": "2.4.3",
"sinon": "1.16.1",
"sinon-chai": "2.8.0",
"stats-webpack-plugin": "0.2.1",
"style-loader": "0.12.4",
"url-loader": "0.5.7",
"webpack": "1.12.2",
"webpack-dev-middleware": "1.2.0",
"webpack-hot-middleware": "2.2.0"
}
}