-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "overflow-mvp",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "24.17.0",
"pnpm": "10.33.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"db:migrate": "node scripts/migrate.ts",
"release:switch": "node scripts/release.ts switch",
"release:prune": "node scripts/release.ts prune",
"reconcile": "node --experimental-transform-types --import ./scripts/register-path-aliases.ts scripts/reconcile.ts"
},
"dependencies": {
"next": "16.3.4",
"next-auth": "5.0.0-beta.32",
"postgres": "3.4.9",
"react": "19.2.8",
"react-dom": "19.2.8",
"yaml": "2.9.0",
"zod": "4.5.4"
},
"devDependencies": {
"@tailwindcss/postcss": "4.3.3",
"@testing-library/jest-dom": "7.0.1",
"@testing-library/react": "16.3.3",
"@types/node": "26.4.1",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.7",
"@vitejs/plugin-react": "6.1.1",
"eslint": "10.9.1",
"eslint-config-next": "16.3.4",
"jsdom": "30.0.1",
"tailwindcss": "4.3.3",
"testcontainers": "12.1.0",
"typescript": "5.9.3",
"vitest": "5.0.0"
}
}