-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.76 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
77
78
79
80
81
82
83
84
85
86
{
"name": "allflix",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && node scripts/validate-env.mjs && next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"type-check": "tsc --noEmit",
"analyze": "ANALYZE=true next build",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "npx tsx prisma/seed.ts",
"db:studio": "prisma studio",
"test": "jest",
"test:watch": "jest --watch",
"test:api": "bash scripts/test-apis.sh",
"test:api:watchlist": "jest --testPathPattern=watchlist.api.test",
"test:api:watch-history": "jest --testPathPattern=watch-history.api.test",
"test:api:family": "jest --testPathPattern=family.api.test",
"test:api:settings": "jest --testPathPattern=settings.api.test",
"test:api:public": "jest --testPathPattern=public.api.test",
"test:api:internal": "jest --testPathPattern=internal.api.test",
"test:coverage": "jest --coverage",
"pwa:check": "node scripts/check-pwa.js",
"pwa:screenshots": "node scripts/generate-screenshots.js",
"pwa:optimize": "node scripts/optimize-screenshots-multilang.js",
"pwa:validate": "npm run pwa:check && echo '✅ PWA validation complete'"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@tanstack/react-query": "^5.90.20",
"axios": "1.13.4",
"better-auth": "^1.4.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.29.2",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"next-intl": "^4.8.2",
"pg": "^8.18.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.71.1",
"react-intersection-observer": "^10.0.2",
"react-player": "^3.4.0",
"resend": "^6.9.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"ua-parser-js": "^2.0.9",
"zod": "^4.3.6"
},
"devDependencies": {
"@better-auth/cli": "^1.4.18",
"@next/bundle-analyzer": "^16.1.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.30",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.24",
"dotenv": "^17.2.4",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jest": "^30.2.0",
"playwright": "^1.58.2",
"postcss": "^8.5.6",
"prisma": "^7.3.0",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.19",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"overrides": {
"glob": "^13.0.0",
"inflight": "npm:@isaacs/inflight@^1.0.6"
}
}