-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "koa-demo",
"version": "1.0.0",
"description": "a koa-demo for learning",
"main": "server/index.js",
"scripts": {
"dev": "webpack -w --display-error-details --mode development --config webpack/webpack.dev.config.js",
"server": "node server/index.js",
"build": "webpack --display-error-details --mode production --config webpack/webpack.prod.config.js"
},
"keywords": [
"koa",
"react"
],
"author": "Huiji",
"license": "ISC",
"dependencies": {
"antd": "^3.22.1",
"axios": "^0.19.0",
"jsonwebtoken": "^8.3.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-jwt": "^3.3.2",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"koa-unless": "^1.0.7",
"koa-views": "^6.1.3",
"mysql2": "^1.6.4",
"pug": "^2.0.0-rc.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"sequelize": "^5.16.0",
"sha1": "^1.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-plugin-import": "^1.6.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^3.2.0",
"eslint": "^6.2.2",
"eslint-plugin-react": "^7.14.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"globby": "4.0.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"postcss-loader": "^2.1.1",
"postcss-pxtorem": "^4.0.1",
"style-loader": "^0.20.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
}