-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 1.92 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": "react-redux-antd-starter-kit",
"version": "0.0.1",
"description": "React, Redux",
"scripts": {
"test": "jest",
"start": "babel-node server.js",
"build": "rimraf dist && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"lint": "eslint src; exit 0",
"clean": "rimraf dist"
},
"repository": {
"type": "git"
},
"keywords": [
"react",
"reactjs",
"redux",
"reduxjs",
"react-router",
"bootstrap",
"webpack",
"flux",
"dashboard",
"boilerplate"
],
"author": "SDLyu",
"license": "MIT",
"dependencies": {
"antd": "^0.11.0",
"body-parser": "^1.14.1",
"classnames": "^2.2.0",
"exenv": "^1.2.0",
"express": "^4.13.3",
"fixed-data-table": "^0.5.0",
"history": "^1.13.0",
"isomorphic-fetch": "^2.1.1",
"lodash": "^3.10.1",
"react": "^0.14.3",
"react-bootstrap": "^0.28.1",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"react-router": "^1.0.0",
"redux": "^3.0.4",
"redux-logger": "^2.0.4",
"redux-thunk": "^1.0.0"
},
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.33",
"babel-eslint": "^4.1.5",
"babel-jest": "^6.0.1",
"babel-loader": "^5.3.2",
"eslint": "^1.9.0",
"eslint-config-airbnb": "1.0.0",
"eslint-plugin-react": "^3.8.0",
"file-loader": "^0.8.4",
"jest-cli": "^0.8.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.4.3",
"stats-webpack-plugin": "^0.2.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.4",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
},
"jest": {
"scriptPreprocessor": "./node_modules/babel-jest",
"unmockedModulePathPatterns": [
"redux"
],
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
}
}