-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.33 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
{
"name": "koa2",
"version": "1.0.0",
"description": "node koa2",
"main": "app.js",
"private": true,
"scripts": {
"dev": "npm run dev:server && npm run dev:static",
"dev:server": "nodemon ./server/app.js",
"dev:static": "webpack-dev-server --watch --config ./static/build/webpack.dev.config.js",
"build:static": "webpack --config ./static/build/webpack.prod.config.js",
"build:server": "node ./server/app.js"
},
"keywords": [
"koa2",
"node"
],
"dependencies": {
"antd": "^3.22.0",
"busboy": "^0.3.1",
"debug": "^2.6.0",
"ejs": "^2.6.2",
"koa": "^2.0.0",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-jsonp": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^7.0.0",
"koa-send": "^3.2.0",
"koa-session": "^5.12.2",
"koa-session-minimal": "^3.0.4",
"koa-static": "^3.0.0",
"koa-views": "^6.2.0",
"mongoose": "^5.6.10",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"validator": "^11.1.0",
"whatwg-fetch": "^3.0.0"
},
"engines": {
"node": ">=7.6.0"
},
"author": "ivin",
"license": "ISC",
"devDependencies": {
"babel-core": "~6.26.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-loader": "~7.1.2",
"babel-plugin-import": "^1.6.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"externals-dependencies": "^1.0.4",
"html-webpack-plugin": "^3.2.0",
"koa-webpack": "^5.2.4",
"koa-webpack-hot-middleware": "^1.0.3",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.4.5",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"style-loader": "^1.0.0",
"supertest": "^4.0.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.1.4"
}
}