-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.21 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
{
"name": "pokemon",
"version": "1.0.0",
"description": "General release management platform",
"main": "index.js",
"scripts": {
"dev": "cross-env BUILD_ENV=development nodemon server/index.js",
"prod": "cross-env BUILD_ENV=production nodemon server/index.js",
"build-prod": "cross-env BUILD_ENV=production webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/captain-xu/pokemon.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/captain-xu/pokemon/issues"
},
"homepage": "https://github.com/captain-xu/pokemon#readme",
"dependencies": {
"@types/lodash-es": "^4.17.3",
"@types/react-loadable": "^5.5.3",
"@types/react-router-dom": "^5.1.5",
"antd": "^4.6.6",
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"connect-history-api-fallback": "^1.6.0",
"ecstatic": "^4.1.4",
"express": "^4.17.1",
"lodash-es": "^4.17.15",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loadable": "^5.5.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"sequelize": "^6.3.5"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/webpack-env": "^1.15.3",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.3.0",
"koa-webpack": "^6.0.0",
"koa2-connect": "^1.0.2",
"less": "^3.11.3",
"less-loader": "^6.1.3",
"mini-css-extract-plugin": "^0.9.0",
"progress-bar-webpack-plugin": "^2.1.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.4",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
}
}