-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
{
"name": "react-redux-webpack2-boilerplate",
"version": "0.0.3",
"private": false,
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --colors --progress",
"build": "rm -rf ./build && NODE_ENV=\"production\" webpack"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-core": "^6.7.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.6.1",
"css-loader": "^0.26.2",
"eslint": "^3.10.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"postcss-loader": "^1.1.1",
"less-loader": "^2.2.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"es6-promise": "^3.1.2",
"eslint-loader": "^1.6.3",
"isomorphic-fetch": "^2.2.1",
"less": "^2.7.2",
"react": "^15.4.0",
"react-css-modules": "^4.1.0",
"react-dom": "^15.4.0",
"react-redux": "^4.4.0",
"react-router": "^3.0.0",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1"
},
"description": "Starter boilerplate for React and Redux, using Webpack 2",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Stanko/react-redux-webpack2-boilerplate.git"
},
"keywords": [
"react",
"redux",
"webpack2",
"boilerplate"
],
"author": "Stanko",
"bugs": {
"url": "https://github.com/Stanko/react-redux-webpack2-boilerplate/issues"
},
"homepage": "https://github.com/Stanko/react-redux-webpack2-boilerplate#readme"
}