-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 4.13 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-app-starter",
"version": "1.0.0",
"private": true,
"description": "Quickly create a light react+typescript app",
"main": "index.tsx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/llaurora/react-app-starter"
},
"scripts": {
"start": "cross-env NODE_ENV=development nodemon server.js",
"start:vite": "vite",
"build": "cross-env NODE_ENV=production webpack --progress --config scripts/webpack.build.config.js",
"eslint": "eslint \"src/**/*.{ts,tsx,js}\"",
"stylelint": "stylelint \"src/**/*.{css,scss,sass}\"",
"lint": "pnpm eslint && pnpm stylelint",
"eslint:fix": "pnpm eslint --fix",
"stylelint:fix": "pnpm stylelint --fix",
"lint:fix": "pnpm eslint:fix && pnpm stylelint:fix",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^5.1.0",
"@babel/runtime": "^7.21.5",
"antd": "^5.5.1",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"core-js": "^3.30.2",
"dayjs": "^1.11.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitejs/plugin-react-swc": "^3.3.1",
"babel-loader": "^9.1.2",
"body-parser": "^1.20.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.4",
"css-minimizer-webpack-plugin": "^5.0.0",
"dotenv": "^16.0.3",
"error-overlay-webpack-plugin": "^1.1.1",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^47.0.0",
"express": "^4.18.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.5.1",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"mini-css-extract-plugin": "^2.7.6",
"mockjs": "^1.1.0",
"node-notifier": "^10.0.0",
"nodemon": "^2.0.22",
"postcss": "^8.4.23",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.3.0",
"postcss-preset-env": "^8.4.1",
"postcss-sass": "^0.5.0",
"prettier": "^2.8.8",
"react-refresh": "^0.14.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.62.1",
"sass-loader": "^13.3.0",
"sass-resources-loader": "^2.2.5",
"style-loader": "^3.3.3",
"stylelint": "^15.6.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^3.0.0",
"stylelint-scss": "^5.0.0",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-html": "^3.2.0",
"vite-plugin-load-css-module": "^0.1.4",
"vite-plugin-mock": "^3.0.0",
"webpack": "^5.83.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1",
"webpack-dev-middleware": "^6.1.1",
"webpack-hot-middleware": "^2.25.3",
"webpack-merge": "^5.9.0",
"webpackbar": "^5.0.0-3"
},
"engines": {
"node": ">= 16.14.0"
}
}