-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.07 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
{
"name": "react-webpack-starter",
"version": "1.0.0",
"description": "Simple project to stater React project with Webpack hot middleware, react-hot-loader and more",
"main": "./src/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p --config webpack.config.js --progress --profile --colors",
"dev-server": "cross-env NODE_ENV=development PORT=7001 API_URL=http://localhost.dev node ./server.js",
"prod-server": "cross-env NODE_ENV=production PORT=8000 API_URL=http://localhost.prod node ./server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilherme90/react-webpack-starter.git"
},
"keywords": [
"react",
"webpack",
"bootstrap"
],
"author": "Guilherme P. Nogueira <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/guilherme90/react-webpack-starter/issues"
},
"homepage": "https://github.com/guilherme90/react-webpack-starter#readme",
"dependencies": {
"bootstrap": "^3.3.7",
"bootswatch": "3.3.7",
"opn": "^4.0.2",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-transition-group": "^15.4.2",
"react-bootstrap": "^0.30.8",
"react-dom": "^15.4.2",
"react-router": "^3.0.3"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "6.22.0",
"cross-env": "^4.0.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.1",
"css-loader": "^0.28.0",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.16.1",
"webpack": "^3.3.0",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0"
}
}