-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 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
{
"name": "conform-example",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"db:setup": "prisma migrate dev",
"dev": "react-router dev",
"build": "react-router build",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"types": "react-router typegen",
"test:unit": "vitest run --project unit --passWithNoTests",
"test:integration": "vitest run --project integration",
"test:e2e": "playwright test --reporter=line",
"test:e2e:ui": "playwright test --reporter=line --ui",
"lint": "biome check",
"lint:fix": "biome check --write"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@biomejs/biome": "2.3.10",
"@conform-to/react": "1.16.0",
"@conform-to/zod": "1.16.0",
"@prisma/adapter-better-sqlite3": "^7.2.0",
"@prisma/client": "^7.2.0",
"@react-router/node": "^7.11.0",
"@react-router/serve": "^7.11.0",
"better-sqlite3": "^12.5.0",
"clsx": "^2.1.1",
"isbot": "^5",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.11.0",
"tailwind-merge": "^3.4.0",
"tiny-invariant": "^1.3.3",
"vite-plugin-babel": "^1.3.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@react-router/dev": "^7.11.0",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/browser": "^4.0.16",
"@vitest/ui": "^4.0.16",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.2.3",
"happy-dom": "^20.0.11",
"prisma": "^7.2.0",
"react-router-devtools": "^6.2.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "7.3.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16",
"vitest-dom": "^0.1.1"
}
}