-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.05 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
66
67
68
{
"name": "react-ts-vite",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"build": "pnpm type-check && vite build",
"preview": "vite preview",
"lint": "eslint src --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --fix && pnpm format",
"format": "prettier --write src",
"test": "vitest",
"test:run": "vitest run",
"coverage": "vitest run --coverage",
"type-check": "tsc",
"up-interactive": "pnpm up -i",
"up-latest": "pnpm up-interactive -L"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/styled": "^11.13.0",
"@tanstack/react-query": "^5.51.11",
"@types/node": "^20.14.12",
"framer-motion": "^11.3.17",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.2.1",
"react-router-dom": "^6.25.1"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@tanstack/eslint-plugin-query": "^5.51.13",
"@tanstack/react-query-devtools": "^5.51.11",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.4",
"@vitest/ui": "^2.0.4",
"eslint": "^9.10.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-sznm": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.8.0",
"jsdom": "^24.1.1",
"msw": "^2.3.4",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.4"
},
"msw": {
"workerDirectory": "public"
}
}