-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.14 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
{
"name": "react-template",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "webpack serve --node-env dev --config ./build/webpack.dev.js",
"build": "webpack --node-env prod --config ./build/webpack.prod.js",
"typecheck": "tsc --noEmit --project ./",
"eslint": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install",
"preview": "serve dist"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-loader": "^9.1.2",
"classnames": "^2.3.2",
"core-js": "3",
"css-loader": "^6.8.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.24",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^8.4.2",
"sass": "^1.63.4",
"sass-loader": "^13.3.2",
"serve": "^14.2.0",
"style-loader": "^3.3.3",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^5.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@babel/runtime": "^7.22.6",
"antd": "^5.8.4",
"axios": "^1.4.0",
"dayjs": "^1.11.9",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.12.0",
"zustand": "^4.3.8"
}
}