-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.14 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.14 KB
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
{
"name": "react-ts-app",
"version": "1.0.0",
"description": "react + webpack + typescript start app",
"main": "index.tsx",
"scripts": {
"start": "webpack serve --watch-options-stdin --progress --config ./config/webpack.config.dev.ts",
"build": "webpack-cli --progress --config ./config/webpack.config.prod.ts",
"test": "tsc --incremental --diagnostics -p tsconfig.json",
"upgrade": "yarn upgrade-interactive --latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YanYuanFE/react-ts-app.git"
},
"keywords": [
"TypeScript",
"React"
],
"author": "YanYuanFE",
"license": "MIT",
"bugs": {
"url": "https://github.com/YanYuanFE/react-ts-app/issues"
},
"homepage": "https://github.com/YanYuanFE/react-ts-app#readme",
"dependencies": {
"@ant-design/charts": "^1.3.5",
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-descriptions": "^1.10.36",
"@ant-design/pro-layout": "^6.32.7",
"@ant-design/pro-table": "^2.62.8",
"@babel/runtime-corejs3": "^7.17.0",
"@emotion/react": "^11.7.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"ahooks": "^3.1.9",
"antd": "^4.18.5",
"axios": "^0.25.0",
"core-js": "3.21.0",
"immer": "^9.0.12",
"loadash": "^1.0.0",
"lodash-es": "^4.17.21",
"npm-check-updates": "^12.2.1",
"polished": "^4.1.4",
"querystring": "^0.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"unstated-next": "^1.1.0",
"use-immer": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@swc/core": "^1.2.136",
"@types/html-webpack-plugin": "^3.2.6",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.15",
"@types/react-router-dom": "^5.3.3",
"@types/speed-measure-webpack-plugin": "^1.3.4",
"@types/terser-webpack-plugin": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-loader": "^8.2.3",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.6.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.5.3",
"prettier": "^2.5.1",
"react-refresh": "^0.11.0",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.3.1",
"swc-loader": "^0.1.15",
"terser-webpack-plugin": "^5.3.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}