-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "skipdb",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "AGPL-3.0-or-later",
"description": "Open, crowdsourced intro/recap/outro/preview skip timestamps for movies and TV. Code: AGPL-3.0, Data: ODbL 1.0 + reciprocity.",
"repository": {
"type": "git",
"url": "https://github.com/SkipDB-TV/skipdb"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "tsx src/db/migrate.ts",
"db:seed": "tsx src/db/seed.ts",
"dev:keys": "tsx scripts/make-test-keys.ts",
"db:export": "tsx scripts/export-dump.ts",
"db:import": "tsx scripts/import-dump.ts",
"db:studio": "drizzle-kit studio",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.2",
"@vercel/analytics": "^2.0.1",
"drizzle-orm": "^0.45.2",
"next": "16.2.9",
"next-auth": "5.0.0-beta.31",
"nodemailer": "^9.0.1",
"pg": "^8.22.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "^26.0.1",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^7.2.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.9",
"postcss": "^8.5.6",
"supertest": "^7.2.2",
"tailwindcss": "^4.3.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"packageManager": "pnpm@11.9.0"
}