-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.04 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
{
"name": "react-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel watch-server watch-client",
"watch-server": "webpack --config webpack_config/webpack.server.js --watch",
"build-server": "webpack --config webpack_config/webpack.server.js --progress",
"watch-client": "webpack --config webpack_config/webpack.client.js --watch",
"build-client": "webpack --config webpack_config/webpack.client.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fangjiapeng/koa2-boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fangjiapeng/koa2-boilerplate/issues"
},
"homepage": "https://github.com/fangjiapeng/koa2-boilerplate#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"antd-mobile": "^5.17.2",
"axios": "^0.27.2",
"koa": "^2.13.4",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/less": "^3.0.3",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"isomorphic-style-loader": "^5.3.2",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"nodemon": "^2.0.18",
"nodemon-webpack-plugin": "^4.8.0",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.1",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
}
}