-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.46 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
{
"name": "React-Redux-Starter-Kit",
"version": "1.0.0",
"description": "",
"main": "src/index.jsx",
"dependencies": {
"axios": "^0.17.1",
"babel-eslint": "^8.0.2",
"babel-plugin-styled-components": "^1.3.0",
"babel-polyfill": "^6.26.0",
"connect": "^3.6.5",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.0",
"eslint-stats": "^1.0.0",
"fs-extra": "^4.0.2",
"history": "^4.7.2",
"html-webpack-plugin": "^2.30.1",
"lodash": "^4.17.4",
"numeral": "^2.0.6",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dev-utils": "^4.2.1",
"react-dom": "^16.1.1",
"react-number-format": "^3.0.3",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.2",
"serve-static": "^1.13.1",
"styled-components": "^2.2.3",
"webpack": "^3.8.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"file-loader": "^1.1.5",
"json-loader": "^0.5.7",
"node-sass": "^4.7.1",
"react-hot-loader": "^3.1.3",
"sass-loader": "^6.0.6",
"serve": "^6.4.1",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.9.4"
},
"scripts": {
"start": "webpack-dev-server --config webpack.config.js --hot --inline",
"start-s": "node ./src/api/stub/server",
"lint": "./node_modules/eslint/bin/eslint.js --ext .js,.jsx ./src",
"lint-fix": "./node_modules/eslint/bin/eslint.js --fix --ext .js,.jsx ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"buildtest": "./node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --profile --colors",
"build": "./node_modules/webpack/bin/webpack.js --config webpack.production.config.js -p --progress --profile --colors"
},
"keywords": [],
"author": "",
"license": "ISC"
}