-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "template",
"version": "1.0.0",
"main": "./src/index.tsx",
"license": "MIT",
"scripts": {
"dev": "webpack serve --mode=development --config ./build/webpack.config.js",
"build": "webpack --mode=production --config ./build/webpack.config.js",
"prepare": "husky install"
},
"dependencies": {
"antd": "4.24.8",
"axios": "^1.4.0",
"less": "^4.1.3",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"typescript": "^5.0.4",
"webpack": "^5.77.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.4",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"clean-webpack-plugin": "^4.0.0",
"commitlint": "^17.5.1",
"css-loader": "^6.7.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"style-loader": "^3.3.2",
"thread-loader": "^3.0.4",
"ts-loader": "^9.4.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2",
"webpack-merge": "^5.8.0"
}
}