-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.37 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
{
"name": "reactjs-redux-starter-kit",
"version": "1.0.0",
"description": "A Simple starter kit for React and Redux with webpack and babel",
"repository": {
"type": "git",
"url": "https://github.com/bobony/reactjs-redux-starter-kit"
},
"scripts": {
"dev": "npm-run-all --parallel open:src",
"build": "rimraf dist && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"open:src": "babel-node server.js",
"lint": "standard",
"lint:watch": "npm run lint"
},
"author": "Anil Kumar",
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"bootstrap": "3.3.6",
"jquery": "^3.3.1",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-react-display-name": "2.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "6.8.0",
"babel-runtime": "^6.23.0",
"colors": "1.1.2",
"compression": "1.6.1",
"cross-env": "1.0.7",
"css-loader": "^0.26.4",
"enzyme": "2.2.0",
"eslint": "2.9.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-react": "^5.0.1",
"eslint-watch": "2.1.11",
"eventsource-polyfill": "0.9.6",
"expect": "1.19.0",
"express": "4.13.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"jsdom": "8.5.0",
"mocha": "2.4.5",
"nock": "8.0.0",
"npm-run-all": "1.8.0",
"open": "0.0.5",
"react-addons-test-utils": "15.0.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"redux-immutable-state-invariant": "1.2.3",
"redux-mock-store": "1.0.2",
"rimraf": "^2.6.1",
"standard": "^10.0.2",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
},
"standard": {
"ignore": [
"server.js",
"webpack.config.js",
"webpack.production.config.js"
]
}
}