-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
109 lines (109 loc) · 3.68 KB
/
package.json
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
104
105
106
107
108
109
{
"name": "crept-main",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"extract-genres": "npx tsc ./scripts/show-extraction/genres.ts && node ./scripts/show-extraction/genres.js",
"extract-tvShows": "npx tsc ./scripts/show-extraction/tvShows.ts && node ./scripts/show-extraction/tvShows.js",
"generate-service-workers": "npx workbox generateSW workbox-config.js",
"extraction": "npm run extract-genres && npm run extract-tvShows",
"build": "npm run extraction && next build && npm run postbuild",
"postbuild": "node ./scripts/sitemap/generatePaths.js && node ./scripts/rss/generateRssFeed.js && npx next-sitemap && node ./scripts/sitemap/submitSitemap.js",
"start": "next start",
"lint": "next lint",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.2.0",
"@auth/pg-adapter": "^1.2.0",
"@auth/prisma-adapter": "^2.2.0",
"@aws-sdk/client-rds-data": "^3.592.0",
"@azure/storage-blob": "^12.18.0",
"@mux/mux-player-react": "^2.6.0",
"@nextui-org/react": "^2.3.6",
"@prisma/client": "^5.15.0",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.19",
"@react-email/render": "0.0.15",
"@statuspage/status-widget": "^1.0.5",
"@tabler/icons-react": "^3.5.0",
"@types/pg": "^8.11.6",
"@vercel/analytics": "^1.3.0",
"@vercel/kv": "^2.0.0",
"@vercel/speed-insights": "^1.0.10",
"apicache": "^1.6.3",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"embla-carousel-react": "^8.1.3",
"express": "^4.19.2",
"ffmpeg": "^0.0.4",
"fluent-ffmpeg": "^2.1.3",
"framer-motion": "^11.2.6",
"googleapis": "^140.0.1",
"lru-cache": "^10.2.2",
"lucide-react": "^0.395.0",
"next": "^14.2.3",
"next-auth": "^5.0.0-beta.19",
"next-pwa": "^5.6.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"pg": "^8.12.0",
"postgres": "^3.4.4",
"punycode": "^2.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"rss": "^1.2.2",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"turbopack": "^0.0.1",
"vaul": "^0.9.1",
"web-streams-polyfill": "^4.0.0",
"webpack": "^5.91.0",
"workbox-webpack-plugin": "^7.1.0",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@types/apicache": "^1.6.6",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-helmet": "^6.1.11",
"@types/uuid": "^9.0.8",
"drizzle-kit": "^0.22.5",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}