-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.96 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "poolmanager",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch",
"guard": "tdd-guard",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:reset": "prisma migrate reset --force",
"db:add-test-games": "tsx scripts/add-test-games.ts",
"db:add-sample-lines": "tsx scripts/add-sample-lines.ts",
"db:verify": "tsx scripts/verify-data.ts",
"db:backup": "tsx scripts/backup-db.ts",
"db:restore": "tsx scripts/restore-db.ts",
"db:load-schedule": "tsx scripts/load-espn-schedule.ts",
"db:load-season": "tsx scripts/load-full-season.ts",
"survivor:create": "tsx scripts/create-survivor-pool.ts",
"survivor:seed": "tsx scripts/seed-survivor-pool.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.60.0",
"@prisma/client": "^6.14.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-switch": "^1.2.6",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/typography": "^0.5.16",
"@tippyjs/react": "^4.2.6",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"autoprefixer": "^10.4.21",
"axios": "^1.12.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^6.1.0",
"debug": "^4.4.1",
"dotenv": "^17.2.1",
"lru-cache": "^11.1.0",
"lucide-react": "^0.540.0",
"next": "^15.4.6",
"node-cron": "^4.2.1",
"node-tesseract-ocr": "^2.2.1",
"openai": "^5.15.0",
"postcss": "^8.5.6",
"prisma": "^6.14.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"source-map-js": "^1.2.1",
"sweetalert2": "^11.23.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.12",
"tesseract.js": "^6.0.1",
"tippy.js": "^6.3.7",
"typescript": "^5.9.2",
"uuid": "^11.1.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"es-module-lexer": "^1.7.0",
"eslint": "^9.33.0",
"eslint-config-next": "^15.4.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"happy-dom": "^18.0.1",
"jsdom": "^22.1.0",
"prettier": "^3.6.2",
"tsx": "^4.20.4",
"vite": "^7.1.2",
"vite-node": "^3.2.4",
"vitest": "^3.2.4"
},
"volta": {
"node": "22.18.0",
"npm": "11.5.2"
},
"engines": {
"node": ">=22 <23"
},
"overrides": {
"zod": "^4.0.17"
},
"keywords": [],
"author": "",
"license": "ISC"
}