forked from thetiby/simple-redux
-
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": "simple-redux",
"description": "A starter project for modern React apps with Redux, with a minimal dependency approach, inspired by redux-webpack-es6-boilerplate",
"version": "0.1.0",
"author": "Tiberiu Chetreanu <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"redux",
"es6",
"hmr",
"hot",
"babel",
"webpack",
"boilerplate",
"starter"
],
"repository": {
"type": "git",
"url": "https://github.com/thetiby/simple-redux.git"
},
"bugs": "https://github.com/thetiby/simple-redux/issues",
"scripts": {
"start": "webpack-dev-server --config ./config/webpack.config.dev.js --hot --inline --progress --history-api-fallback",
"build": "SET NODE_ENV=production&&webpack -p --config ./config/webpack.config.prod.js --progress",
"lint": "eslint config src/**/*.jsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-core": "6.5.2",
"babel-eslint": "4.1.8",
"babel-loader": "6.2.3",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"cheerio": "0.20.0",
"colors": "1.1.2",
"copy-webpack-plugin": "0.3.3",
"css-loader": "0.23.1",
"eslint": "1.10.3",
"eslint-plugin-react": "3.16.1",
"file-loader": "0.8.5",
"react-hot-loader": "1.3.0",
"redux-devtools": "3.1.1",
"redux-devtools-dock-monitor": "1.1.0",
"redux-devtools-log-monitor": "1.0.4",
"webpack": "1.12.13",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"classnames": "2.2.3",
"lodash": "4.6.1",
"react": "0.14.7",
"react-dom": "0.14.7",
"react-redux": "4.4.0",
"react-router": "2.0.0",
"redux": "3.3.1"
}
}