-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "webpack-heroku-boilerplate",
"version": "1.0.0",
"description": "Simplest Heroku starter kit for React apps.",
"main": "./src/entry.js",
"homepage": "https://github.com/wallacyyy/webpack-heroku",
"author": "Leonardo Couto",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack --config ./webpack.prod.config.js --progress --colors",
"start": "node ./app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wallacyyy/webpack-heroku.git"
},
"keywords": [
"react",
"express",
"webpack",
"es2015",
"javascript"
],
"dependencies": {
"draft-js": "^0.7.0",
"express": "^4.13.4",
"react": "^0.14.8",
"react-dom": "^0.14.8"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"draft-js": "^0.7.0",
"draft-js-mention-plugin": "^1.1.2",
"immutable": "^3.8.1",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"node-sass": "^3.4.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.6",
"webpack": "^1.12.14",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}