-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.68 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
{
"name": "toddler-movies",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"migrate:tmdb": "node scripts/populate-tmdb-data.js",
"fetch:imdb": "node scripts/fetch-imdb-ids.js",
"scrape:subtitles": "node scripts/scrape-subtitles.js",
"scrape:subtitles-alt": "node scripts/scrape-subtitles-alternative.js",
"scrape:subtitles-title": "node scripts/scrape-subtitles-by-title.js",
"setup:subtitles": "npm run fetch:imdb && npm run scrape:subtitles",
"analyze:claude": "node scripts/claude-analysis.js",
"test:setup": "node scripts/test-setup.js",
"setup:years": "node scripts/setup-release-years.js"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.7",
"@types/uuid": "^10.0.0",
"dotenv": "^16.5.0",
"framer-motion": "^12.16.0",
"lucide-react": "^0.513.0",
"moviedb-promise": "^4.0.7",
"next-themes": "^0.3.0",
"next": "^14.2.29",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resend": "^4.5.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"babel-jest": "^29.7.0",
"eslint": "8.57.1",
"eslint-config-next": "15.5.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0-beta.3",
"tailwindcss": "^4",
"typescript": "^5"
},
"type": "module"
}