-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.72 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": "react-boilerplate",
"version": "1.0.0-alpha",
"description": "React BoilerPlate with react bootstrap",
"scripts": {
"start": "webpack-dev-server --port 3334 --progress --colors",
"prod": "webpack -p --config webpack.config.prod.js --progress --colors",
"start:prod": "node scripts/startProduct.js --port 5000",
"test": "cross-env NODE_ENV=test mocha --recursive --compilers js:babel-register --require ./test/setup.js",
"test:watch": "npm test -- --watch"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"babel-standalone": "^6.6.5",
"react": "^0.14.7",
"react-bootstrap": "^0.28.4",
"react-dom": "^0.14.7",
"react-redux": "^4.1.2",
"redux": "^3.1.2",
"redux-thunk": "^2.0.1",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-runtime": "^6.18.0",
"body-parser": "^1.16.0",
"chai": "^3.5.0",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^1.0.7",
"css-loader": "^0.26.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^2.1.0",
"jsdom": "^5.6.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-cli": "^0.1.2",
"karma-mocha": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"react-addons-test-utils": "^0.14.7",
"style-loader": "^0.13.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"yargs": "^7.0.1"
}
}