-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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": "react-redux-toolkit-query-clean-architecture",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "npm run lint && tsc && vite build",
"preview": "vite preview",
"lint": "eslint --max-warnings=0 src --ext .js,.jsx,.ts,.tsx",
"test:run": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@hookform/resolvers": "^2.9.3",
"@mui/material": "^5.8.6",
"@reduxjs/toolkit": "^1.8.2",
"immer": "^9.0.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.33.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@mui/icons-material": "^5.8.4",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vitejs/plugin-react": "^1.3.0",
"@vitest/ui": "^0.16.0",
"eslint": "^8.18.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vitest": "^0.16.0"
}
}