-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.83 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
69
70
71
72
73
74
75
76
{
"name": "sorcerify",
"type": "module",
"license": "MIT",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --open",
"test": "vitest",
"test:e2e": "playwright test --ui",
"test:ci": "vitest run",
"test:e2e:ci": "playwright test",
"lint:tsc": "tsc -b",
"lint:biome": "biome check --write --unsafe",
"lint": "pnpm run \"/lint:./\"",
"format": "biome format --write",
"validate": "pnpm lint && pnpm test:ci && pnpm test:e2e:ci",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-query": "5.84.1",
"@tanstack/react-query-devtools": "5.84.1",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.539.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-error-boundary": "6.0.0",
"react-router": "7.8.0",
"react-select": "5.9.0",
"tailwind-merge": "^3.3.1",
"valibot": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@playwright/test": "1.54.2",
"@tailwindcss/vite": "4.1.11",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.6.4",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.15.30",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"@vitejs/plugin-react": "5.0.0",
"@vitest/coverage-v8": "3.2.4",
"happy-dom": "18.0.1",
"msw": "2.10.4",
"tailwindcss": "4.1.11",
"tw-animate-css": "^1.3.6",
"typescript": "5.9.2",
"vite": "7.1.1",
"vitest": "3.2.4"
},
"pnpm": {
"ignoredBuiltDependencies": [
"cypress"
],
"onlyBuiltDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild",
"msw"
]
},
"packageManager": "pnpm@10.11.1",
"msw": {
"workerDirectory": [
"public"
]
}
}