-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "autoshorts",
"version": "0.1.0",
"description": "AutoShorts - Automated YouTube Shorts generation service",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"worker": "node dist/worker/worker.js",
"migrate": "ts-node src/db/migrate.ts",
"seed-plans": "ts-node src/db/seed-plans.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@google-cloud/text-to-speech": "^5.0.0",
"@paypal/checkout-server-sdk": "^1.0.3",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.22",
"axios": "^1.4.0",
"bcrypt": "^5.1.1",
"bullmq": "^1.79.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"form-data": "^4.0.0",
"framer-motion": "^12.23.24",
"googleapis": "^128.0.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.555.0",
"multer": "^1.4.5-lts.1",
"next": "^15.0.0",
"pg": "^8.10.0",
"postcss": "^8.5.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stripe": "^14.7.0",
"tailwindcss": "^3.4.18",
"three": "^0.181.2",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.0",
"@types/pg": "^8.10.0",
"@types/validator": "^13.11.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.0"
},
"keywords": [
"youtube",
"shorts",
"automation",
"video"
],
"author": "",
"license": "ISC"
}