-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.53 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
{
"name": "koademo",
"version": "1.0.0",
"description": "自定义控件",
"main": "index.js",
"scripts": {
"dev": "npm run devserver | npm run devstatic",
"start": "npm run devserver | npm run hotstatic",
"devserver": "nodemon --inspect --watch 'server/**/*' -e ts,tsx --exec 'node -r ts-node/register' ./server/app.ts",
"devstatic": "webpack --watch --config ./static/build/webpack.dev.config.js",
"hotstatic": "webpack-dev-server --hot --progress --config ./static/build/webpack.dev.config.js --content-base --open",
"build": "webpack --config ./static/build/webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mailylqj/koa-demo.git"
},
"author": "leeli",
"license": "ISC",
"bugs": {
"url": "https://github.com/mailylqj/koa-demo/issues"
},
"homepage": "https://github.com/mailylqj/koa-demo#readme",
"dependencies": {
"@jd/jmfe-node-getlocalip": "^1.1.0",
"@types/koa": "^2.0.49",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-convert": "^1.2.2",
"@types/koa-mount": "^4.0.0",
"@types/koa-redis": "^3.0.2",
"@types/koa-router": "^7.0.42",
"@types/koa-session": "^5.10.1",
"@types/koa-static": "^4.0.1",
"@types/koa-views": "^2.0.3",
"@types/node-fetch": "^2.5.0",
"@types/node-schedule": "^1.2.4",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"@types/react-redux": "^7.1.4",
"@types/react-router-dom": "^4.3.4",
"@types/redux-saga": "^0.10.5",
"@types/ws": "^6.0.3",
"antd": "^3.21.4",
"art-template": "^4.13.2",
"axios": "^0.19.0",
"highcharts": "^7.2.1",
"jade": "^1.11.0",
"koa": "^2.7.0",
"koa-art-template": "^1.1.1",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-mount": "^4.0.0",
"koa-onerror": "^4.1.0",
"koa-redis": "^4.0.0",
"koa-router": "^7.4.0",
"koa-session": "^5.12.2",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"md5": "^2.2.1",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"node-schedule": "^1.3.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.0.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.1",
"ws": "^7.1.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime-corejs2": "^7.5.5",
"@babel/runtime-corejs3": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"babel-preset-react-app": "^9.0.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.1.0",
"file-loader": "^4.1.0",
"happypack": "^5.0.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"nodemon": "^1.19.1",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.12.11",
"sass-loader": "^8.0.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.1"
}
}