-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.44 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.44 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
{
"name": "hacker-prode",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "prisma generate && next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"api-sports:fifa2026": "tsx experiments/api-sports/fifa-2026.ts",
"api-sports:seed-countries": "tsx prisma/seed/api-sports-countries.ts",
"build-prod": "./setup.sh && next build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:db:up": "docker compose up -d prode-test-db && TEST_DATABASE_URL=\"postgresql://leniolabs:leniolabs@localhost:5433/prode_test\" DATABASE_URL=\"postgresql://leniolabs:leniolabs@localhost:5433/prode_test\" npx prisma db push --skip-generate",
"test:db:reset": "docker compose rm -sfv prode-test-db && npm run test:db:up",
"screenshot": "tsx harness/screenshot.ts",
"harness:baseline": "tsx harness/screenshots.ts --mode baseline",
"harness:check": "tsx harness/screenshots.ts --mode check"
},
"prisma": {
"seed": "tsx prisma/seed/index.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.4.1",
"@napi-rs/canvas": "^0.1.30",
"@prisma/adapter-pg": "^6.19.3",
"@prisma/client": "^6.19.3",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-query-devtools": "^5.101.0",
"@types/axios": "^0.14.0",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/uuid": "^8.3.4",
"axios": "^1.1.3",
"bcryptjs": "^3.0.3",
"cookie": "^1.1.1",
"fluent-ffmpeg": "^2.1.2",
"gif-encoder-2": "^1.0.5",
"next": "^15.5.19",
"next-auth": "^5.0.0-beta.31",
"pg": "^8.21.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sass": "^1.55.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.60.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/node": "^22.19.19",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "8.26.0",
"eslint-config-next": "^15.5.19",
"playwright": "^1.60.0",
"prisma": "^6.19.3",
"ts-node": "^10.9.1",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.7"
}
}