-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "examples-next-app-dir",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:e2e": "playwright test",
"test-dev": "start-server-and-test dev 3000 test:e2e",
"test-start": "start-server-and-test start 3000 test:e2e"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@js-temporal/polyfill": "^0.4.4",
"@tanstack/react-query": "^5.62.8",
"@tanstack/react-query-devtools": "^5.59.15",
"@trpc/client": "next",
"@trpc/next": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@types/node": "^22.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"next": "^15.1.3",
"next-auth": "5.0.0-beta.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.53.2",
"react-hot-toast": "^2.4.1",
"server-only": "^0.0.1",
"superjson": "^1.12.4",
"trpc-api": "link:./src/trpc",
"typescript": "^5.7.2",
"zod": "^3.0.0"
},
"devDependencies": {
"@playwright/test": "^1.26.1",
"start-server-and-test": "^1.12.0",
"wait-port": "^1.0.1"
}
}