-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "webpack-heroku-boilerplate",
"version": "1.0.0",
"description": "Heroku deployable boilerplate for React/Flux/Webpack apps.",
"main": "./src/entry.js",
"homepage": "https://github.com/wallacyyy/webpack-heroku",
"author": "Leonardo Couto",
"license": "MIT",
"scripts": {
"postinstall": "webpack --config ./webpack-prod.config.js --progress --colors",
"start": "node server.js",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wallacyyy/webpack-heroku.git"
},
"keywords": [
"react",
"express",
"webpack",
"es6",
"es7",
"javascript"
],
"dependencies": {
"babel": "^5.8.20",
"babel-core": "^5.8.19",
"babel-loader": "^5.3.2",
"classnames": "^2.1.3",
"css-loader": "^0.15.6",
"express": "^4.13.1",
"file-loader": "^0.8.4",
"history": "^1.9.0",
"material-ui": "^0.14.2",
"node-sass": "^3.2.0",
"path": "^0.11.14",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^4.0.0",
"react-router": "1.0.0",
"react-tap-event-plugin": "^0.2.1",
"redux": "^3.0.0",
"redux-router": "^1.0.0-beta3",
"redux-thunk": "^1.0.0",
"sass-loader": "^1.0.3",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.10.5"
},
"devDependencies": {
"babel-eslint": "^4.0.5",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"react-hot-loader": "^1.2.8",
"webpack-dev-server": "^1.10.1"
}
}