-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.4 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
{
"name": "nsp",
"version": "1.0.0",
"description": "nsp是koa+react服务端渲染框架",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon node bin/index.js",
"build": "cross-env NODE_ENV=production node bin/index.js",
"analyze": "cross-env NODE_ENV=production Analyze=true webpack --config webpack/webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Peroluo/NSP.git"
},
"keywords": [
"react",
"nsp"
],
"author": "luoguoxiong",
"license": "ISC",
"bugs": {
"url": "https://github.com/Peroluo/NSP/issues"
},
"homepage": "https://github.com/Peroluo/NSP#readme",
"dependencies": {
"antd-mobile": "^2.3.1",
"axios": "^0.19.0",
"nsploadable": "^0.0.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"autoprefixer": "^9.7.1",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"chokidar": "^3.3.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"core-js": "^3.4.1",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"glob": "^7.1.5",
"happypack": "^5.0.1",
"koa": "^2.10.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static-cache": "^5.1.2",
"koa-views": "^6.2.1",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lodash": "^4.17.15",
"log4js": "^6.1.0",
"mini-css-extract-plugin": "^0.8.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-px-to-viewport": "^1.1.1",
"ramda": "^0.26.1",
"react-app-polyfill": "^1.0.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0",
"webpackbar": "^4.0.0"
}
}