-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
125 lines (125 loc) · 4.07 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react_from_zero",
"version": "0.0.1",
"description": "a react scaffold which includes redux、react-router、webpack、es6",
"main": "./js/index.js",
"scripts": {
"clean": "rimraf dist",
"test": "cross-env NODE_ENV=test mocha",
"coverage": "cross-env NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha",
"build-analyze:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --profile --colors --json > analyze.json",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --profile --colors",
"build-analyze": "npm-run-all clean build-analyze:webpack",
"build": "npm-run-all clean build:webpack",
"build-dev:webpack": "cross-env NODE_ENV=development webpack --config webpack.config-dev.js --watch --progress --colors",
"build-dev": "npm-run-all clean build-dev:webpack",
"start": "cross-env NODE_ENV=development node devServer",
"lint:style": "stylelint \"src/**/*.less\" --syntax less"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jay0815/react_from_zero.git"
},
"keywords": [
"react(v16)",
"react-router(v4)",
"redux",
"es6"
],
"author": "Jack Qian",
"license": "MIT",
"bugs": {
"url": "https://github.com/jay0815/react_from_zero/issues"
},
"homepage": "https://github.com/jay0815/react_from_zero#readme",
"dependencies": {
"antd": "^3.8.0",
"autoprefixer": "^9.1.0",
"babel-core": "^6.26.3",
"babel-istanbul": "^0.12.2",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.3",
"bundle-loader": "^0.5.6",
"compression-webpack-plugin": "^1.1.11",
"connect-history-api-fallback": "^1.4.0",
"cookie-parser": "^1.4.3",
"core-js": "^2.5.7",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"ejs": "^2.6.1",
"es6-promise": "^4.1.1",
"events": "^3.0.0",
"express": "^4.16.3",
"express-static-gzip": "^1.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"flux-standard-action": "^2.0.3",
"happypack": "^5.0.0",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"https": "^1.0.0",
"ignore-styles": "^5.0.1",
"immutable": "^3.8.2",
"json-loader": "^0.5.7",
"jsonwebtoken": "^8.3.0",
"key-mirror": "^1.0.1",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"log4js": "^3.0.4",
"npm-run-all": "^4.1.3",
"opn": "^5.3.0",
"path": "^0.12.7",
"postcss-loader": "^2.1.6",
"postcss-scss": "^2.0.0",
"precss": "^3.1.2",
"prop-types": "^15.6.2",
"raf": "^3.4.0",
"rc-queue-anim": "^1.6.5",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.8",
"redbox-react": "^1.6.0",
"redux": "^4.0.0",
"redux-devtools": "^3.4.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"request": "^2.87.0",
"rimraf": "^2.6.2",
"rucksack-css": "^1.0.2",
"style-loader": "^0.22.0",
"superagent": "^3.8.3",
"svg-url-loader": "^2.3.2",
"url-loader": "^1.0.1",
"webpack": "^4.16.5",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.3"
},
"devDependencies": {
"chai": "^4.1.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^11.4.0",
"mocha": "^4.0.1",
"mochawesome": "^2.3.1",
"mockjs": "^1.0.1-beta3",
"react-test-renderer": "^16.1.1",
"sinon": "^4.1.6",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0"
}
}