-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.86 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
{
"name": "react-testing-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"server": "json-server --watch src/data/db.json --delay 500",
"start": "concurrently \"npm run server\" \"npm run dev\"",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@auth0/auth0-react": "2.2.3",
"@hookform/resolvers": "3.3.2",
"@radix-ui/themes": "2.0.0",
"axios": "1.6.0",
"delay": "6.0.0",
"json-server": "0.17.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.47.0",
"react-hot-toast": "2.4.1",
"react-icons": "4.12.0",
"react-loading-skeleton": "3.3.1",
"react-query": "3.39.3",
"react-router-dom": "6.17.0",
"zod": "3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@mswjs/data": "^0.16.1",
"@tailwindcss/typography": "0.5.10",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "14.2.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.10.0",
"@types/react": "18.2.43",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"@vitejs/plugin-react": "4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "1.6.0",
"autoprefixer": "10.4.16",
"concurrently": "8.2.2",
"eslint": "8.55.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.5",
"jsdom": "24.0.0",
"msw": "2.1.6",
"postcss": "8.4.31",
"resize-observer-polyfill": "1.5.1",
"tailwindcss": "3.3.5",
"typescript": "5.2.2",
"vite": "5.0.8",
"vitest": "1.6.0"
}
}