-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.74 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
87
88
{
"name": "redux-webpack-es6-boilerplate",
"description": "A starter project for modern React apps with Redux",
"version": "0.7.1",
"author": "Nick S. Plekhanov <nick.plekhanov@gmail.com>",
"license": "MIT",
"keywords": [
"react",
"redux",
"es6",
"hmr",
"hot",
"babel",
"webpack",
"boilerplate",
"starter"
],
"repository": {
"type": "git",
"url": "https://github.com/nicksp/redux-webpack-es6-boilerplate.git"
},
"bugs": "https://github.com/nicksp/redux-webpack-es6-boilerplate/issues",
"scripts": {
"clean:build": "node ./bin/clean.js createdir",
"build:html": "node ./bin/buildHtml.js",
"prestart": "node ./bin/clean.js",
"start": "webpack-dev-server --config ./config/webpack.config.dev.js --hot --inline --progress",
"prebuild": "npm run clean:build && npm run build:html",
"build": "SET NODE_ENV=production& NODE_ENV=production& webpack -p --config ./config/webpack.config.prod.js --progress",
"lint": "eslint config src/js/** --ext .js",
"jscs": "jscs src/js/",
"test": "mocha --compilers js:babel-core/register,css:./test/unit/cssNullCompiler.js --require ./test/unit/testHelper.js --recursive ./test/unit",
"test:watch": "npm run test -- --watch",
"publish": "node ./bin/pages_build.js"
},
"devDependencies": {
"babel-core": "6.7.7",
"babel-eslint": "6.0.3",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"chai": "3.5.0",
"chai-jquery": "2.0.0",
"cheerio": "0.20.0",
"colors": "1.1.2",
"copy-webpack-plugin": "2.1.3",
"css-loader": "0.23.1",
"eslint": "2.8.0",
"eslint-plugin-react": "5.0.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"gh-pages": "0.11.0",
"jquery": "2.2.2",
"jscs": "2.10.1",
"jsdom": "8.2.0",
"mocha": "2.4.5",
"node-sass": "3.7.0",
"postcss-loader": "0.8.2",
"react-addons-test-utils": "15.0.1",
"react-hot-loader": "1.3.0",
"redux-devtools": "3.2.0",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.0.11",
"redux-immutable-state-invariant": "1.2.3",
"redux-slider-monitor": "1.0.5",
"rimraf": "2.5.2",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"url-loader": "0.5.7",
"webpack": "1.13.0",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"autoprefixer": "6.3.6",
"bootstrap-sass": "3.3.6",
"classnames": "2.2.3",
"history": "2.1.0",
"lodash": "4.11.1",
"react": "15.0.1",
"react-bootstrap": "0.29.4",
"react-dom": "15.0.1",
"react-redux": "4.4.5",
"react-router": "2.3.0",
"react-router-bootstrap": "0.23.0",
"redux": "3.5.2"
}
}