-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.07 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
{
"name": "u2admin",
"version": "0.0.1",
"description": "基于 React + Typescript + antd 的后台模板",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack serve --config ./webpack/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack serve --config ./webpack/webpack.prod.js",
"analyze": "cross-env NODE_ENV=production webpack serve --config ./webpack/webpack.prod.js --analyze",
"format": "prettier --write ./src/**/*.{js,jsx,ts,tsx,less,scss}",
"api": "ts-node ci/index.ts",
"prepare": "husky install",
"lint-staged": "lint-staged",
"commitlint": "commitlint --edit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hardmanhong/u2admin.git"
},
"keywords": [
"react",
"admin",
"template"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/hardmanhong/u2admin/issues"
},
"homepage": "https://github.com/hardmanhong/u2admin#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@trivago/prettier-plugin-sort-imports": "^3.3.1",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.4.2",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-resizable": "^3.0.4",
"@types/shelljs": "^0.8.12",
"babel-loader": "^8.2.5",
"babel-preset-react-app": "^10.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.2.3",
"mini-css-extract-plugin": "^2.7.2",
"minimist": "^1.2.7",
"openapi-typescript": "^6.3.4",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"rimraf": "^5.0.1",
"shelljs": "^0.8.5",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-morph": "^19.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"typescript-plugin-css-modules": "^4.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@ant-design/icons": "^5.0.0",
"@antv/g2plot": "^2.4.29",
"@wooorm/starry-night": "^2.1.1",
"antd": "^5.4.3",
"axios": "^1.1.3",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"hast-util-to-jsx-runtime": "^1.2.0",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-markdown": "^8.0.7",
"react-resizable": "^3.0.5",
"react-router-dom": "^6.4.2",
"rehype-highlight": "^6.0.0",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1",
"remark-toc": "^8.0.1",
"zustand": "^4.3.8"
}
}