-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "ai-answer-engine",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run start:transcript-service\" \"next dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start:transcript-service": "python src/services/youtube_transcript_service.py"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@upstash/ratelimit": "^2.0.5",
"chart.js": "^4.4.7",
"cheerio": "^1.0.0",
"csv-parse": "^5.6.0",
"groq-sdk": "^0.9.0",
"next": "15.0.4",
"papaparse": "^5.4.1",
"pdf-parse": "^1.1.1",
"prettier": "^3.4.2",
"puppeteer": "^23.10.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.6.1",
"tesseract.js": "^5.1.1",
"types": "^0.1.1",
"youtube-transcript-api": "^1.1.2",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@types/node": "^20",
"@types/papaparse": "^5.3.14",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "15.0.4",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}