-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.96 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
{
"name": "my-react-template-for-pc",
"version": "1.0.0",
"description": "minooo专用的前端pc项目开发的React模板",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"export": "rimraf outCDN && next export -o outCDN",
"start": "cross-env NODE_ENV=production node server.js",
"start-test": "cross-env NODE_ENV=production NODE_TEST=test node server.js",
"analyze": "cross-env ANALYZE=1 next build",
"css": "npm run css:build && npm run css:clean",
"css:build": "webpack --config webpack-handle-css.js --progress --color",
"css:clean": "rimraf static/styles/antd_mobile_min.js static/styles/app_min.js",
"css:dev": "webpack --config webpack-handle-css.js --watch --progress --color",
"fix": "./node_modules/.bin/eslint --fix ./pages ./components ./store ./utils",
"lint": "./node_modules/.bin/eslint ./pages ./components ./store ./utils"
},
"pre-commit": [
"fix",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/minooo/my-react-template-for-pc.git"
},
"keywords": [
"react",
"next.js",
"redux",
"redux-saga",
"antd"
],
"author": "minooo",
"license": "ISC",
"bugs": {
"url": "https://github.com/minooo/my-react-template-for-pc/issues"
},
"homepage": "https://github.com/minooo/my-react-template-for-pc#readme",
"dependencies": {
"antd": "^3.3.0",
"autoprefixer": "^8.1.0",
"axios": "^0.18.0",
"babel-eslint": "^8.2.2",
"babel-plugin-import": "^1.6.6",
"babel-plugin-module-resolver": "^3.1.0",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"http-proxy-middleware": "^0.18.0",
"koa": "^2.5.0",
"koa-route": "^3.2.0",
"koa2-connect": "^1.0.2",
"lru-cache": "^4.1.2",
"next": "^5.0.0",
"next-redux-saga": "^2.0.1",
"next-redux-wrapper": "^1.3.5",
"nodemon": "^1.17.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"uuid": "^3.2.1",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.7",
"file-loader": "^1.1.6",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.9",
"pre-commit": "^1.2.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2"
}
}