-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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-redux-starter",
"version": "0.0.1",
"description": "Starter Kit for React + Redux application with Webpack",
"main": "src/main.js",
"scripts": {
"start": "node server.js",
"start:debug": "DEBUG=true npm start",
"lint": "eslint src/scripts",
"build": "rm build/*; NODE_ENV=production webpack --config webpack.config.production.js --colors --bail"
},
"keywords": [
"react",
"redux",
"webpack",
"starter",
"babel",
"hot",
"eslint"
],
"author": "Dimitar Valchanov",
"license": "MIT",
"dependencies": {
"babel": "~5.8.29",
"classnames": "^2.2.1",
"history": "^1.13.1",
"immutable": "^3.7.5",
"luckio": "^1.0.1",
"react": "^0.14.3",
"react-addons-css-transition-group": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0",
"store2": "^2.3.2"
},
"devDependencies": {
"autoprefixer": "^6.1.1",
"babel-core": "~5.8.33",
"babel-eslint": "^4.1.6",
"babel-loader": "~5.3.3",
"babel-runtime": "~5.8.29",
"css-loader": "^0.23.0",
"eslint": "^1.10.2",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.11.1",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.7.0",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"lodash": "^3.10.1",
"node-sass": "^3.4.2",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^2.1.5",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}