-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "my-app",
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint .",
"ts": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@hookform/resolvers": "3.9.1",
"@mui/icons-material": "5.15.17",
"@mui/material": "5.15.17",
"axios": "1.7.9",
"clsx": "2.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.2",
"react-hook-form-mui": "7.4.1",
"react-router-dom": "6.23.0",
"vite-plugin-svgr": "4.3.0",
"yup": "1.6.1"
},
"devDependencies": {
"@types/node": "20.12.11",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"@vitejs/plugin-react": "4.3.4",
"eslint": "8.48.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unicorn": "45.0.2",
"prettier": "3.4.2",
"typescript": "5.2.2",
"vite": "5.4.11",
"vitest": "2.1.8"
},
"engines": {
"npm": ">=8.19.2 <11.0.0",
"node": ">=18.12.1 <21.0.0"
}
}