-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2 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
{
"name": "project-boilerplates-admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "npx prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "~11.11.4",
"@emotion/styled": "~11.11.5",
"@hookform/resolvers": "~3.3.4",
"@mui/icons-material": "~5.15.16",
"@mui/material": "~5.15.15",
"@mui/x-date-pickers": "~7.3.2",
"@originjs/vite-plugin-commonjs": "~1.0.3",
"@reduxjs/toolkit": "~2.2.3",
"@types/node": "~20.12.7",
"date-fns": "~3.6.0",
"dotenv": "~16.4.5",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-hook-form": "~7.51.3",
"react-redux": "~9.1.1",
"react-router-dom": "~6.23.0",
"react-toastify": "~10.0.5",
"throttle-debounce": "~5.0.0",
"zod": "~3.23.5"
},
"devDependencies": {
"@types/react": "~18.2.66",
"@types/react-dom": "~18.2.22",
"@types/throttle-debounce": "^5.0.2",
"@typescript-eslint/eslint-plugin": "~7.7.1",
"@typescript-eslint/parser": "~7.7.1",
"@vitejs/plugin-react": "~4.2.1",
"eslint": "~8.57.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-config-airbnb-typescript": "~18.0.0",
"eslint-config-prettier": "~9.1.0",
"eslint-import-resolver-custom-alias": "~1.3.2",
"eslint-import-resolver-node": "~0.3.9",
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jsx-a11y": "~6.8.0",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-react": "~7.34.1",
"eslint-plugin-react-hooks": "~4.6.2",
"eslint-plugin-react-refresh": "~0.4.6",
"eslint-plugin-simple-import-sort": "~12.1.0",
"husky": "~9.0.11",
"lint-staged": "~15.2.2",
"prettier": "~3.2.5",
"typescript": "~5.2.2",
"vite": "~5.4.21"
},
"engines": {
"node": ">=20.12.2"
}
}