-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.36 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.36 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
{
"name": "openmic",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack --port 3003",
"dev:inspect": "NODE_OPTIONS='--inspect' next dev --port 3003",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"lint:fix": "next lint --fix --dir src",
"lint:scripts": "next lint --dir scripts",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest --run",
"validate": "npm run lint && npm run typecheck && npm run test:run",
"db:push": "NODE_ENV=development tsx scripts/db.ts push",
"db:push:prod": "NODE_ENV=production tsx scripts/db.ts push",
"db:pull": "NODE_ENV=development tsx scripts/db.ts pull",
"db:pull:prod": "NODE_ENV=production tsx scripts/db.ts pull",
"db:reset": "NODE_ENV=development tsx scripts/db.ts reset",
"db:reset:prod": "NODE_ENV=production tsx scripts/db.ts reset",
"db:status": "NODE_ENV=development tsx scripts/db.ts status",
"db:status:prod": "NODE_ENV=production tsx scripts/db.ts status",
"db:import": "NODE_ENV=development tsx scripts/db.ts import",
"db:import:prod": "NODE_ENV=production tsx scripts/db.ts import",
"test:lottery": "tsx scripts/test-lottery.ts",
"sync:comedians": "tsx scripts/sync-to-sheets.ts"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.772.0",
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "^2.49.1",
"@types/jsonwebtoken": "^9.0.9",
"@vercel/analytics": "^1.5.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.5",
"email-validator": "^2.0.4",
"googleapis": "^162.0.0",
"jsonwebtoken": "^9.0.2",
"next": "^15.5.7",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"resend": "^4.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/dotenv": "^8.2.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.2.3",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5",
"vitest": "^3.2.4"
}
}