-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.77 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": "nfl-picks",
"version": "1.1.0",
"private": true,
"engines": {
"node": "24"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "tsx --test src/lib/nfl-season.test.ts src/lib/pick-flow.integration.test.ts src/lib/pwa-assets.test.ts src/lib/leaderboard-ranking.test.ts src/lib/email-time.test.ts src/lib/email-domain.test.ts src/lib/email-send-log.test.ts src/lib/email-templates.test.ts src/lib/email-service.test.ts scripts/data-corrections/2026-week-1-missed-picks.test.ts",
"correct:2026-week1-missed-picks": "tsx --env-file=.env.local scripts/data-corrections/2026-week-1-missed-picks.ts",
"correct:2026-week1-missed-picks:apply": "tsx --env-file=.env.local scripts/data-corrections/2026-week-1-missed-picks.ts --apply"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"firebase": "^12.7.0",
"firebase-admin": "^13.10.0",
"firebase-functions": "^7.0.2",
"framer-motion": "^12.23.26",
"lucide-react": "^0.562.0",
"next": "16.3.0",
"next-themes": "^0.4.6",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-icons": "^5.5.0",
"resend": "6.26.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.3.0",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "^5"
}
}