-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"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": "^5.2.2",
"@js-temporal/polyfill": "^0.4.4",
"@tanstack/react-query": "^5.80.3",
"@tanstack/react-query-devtools": "^5.80.3",
"@trpc/client": "canary",
"@trpc/next": "canary",
"@trpc/server": "canary",
"@trpc/tanstack-react-query": "canary",
"@types/node": "^22.13.5",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"next": "^15.3.8",
"next-auth": "5.0.0-beta.25",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.69.0",
"react-hot-toast": "^2.4.1",
"server-only": "^0.0.1",
"superjson": "^1.12.4",
"trpc-api": "link:./src/trpc",
"typescript": "^5.9.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"start-server-and-test": "^1.12.0",
"wait-port": "^1.0.1"
}
}