-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.58 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.58 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "learn-sync-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"start": "node dist/index.js",
"extension:dev": "webpack --watch --mode development",
"extension:build": "webpack --mode production",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@huggingface/hub": "^1.0.0",
"@huggingface/inference": "^3.0.0",
"@pinecone-database/pinecone": "^4.1.0",
"@prisma/client": "^6.2.1",
"@tailwindcss/typography": "^0.5.16",
"@types/bcrypt": "^5.0.2",
"@types/cheerio": "^0.22.35",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.21.2",
"get-audio-duration": "^4.0.1",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.3",
"node-fetch": "^2.7.0",
"nodemon": "^3.1.9",
"oauth-1.0a": "^2.2.6",
"openai": "^4.77.3",
"passport": "^0.7.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-twitter": "^1.0.4",
"pdf-parse": "^1.1.1",
"playwright": "^1.49.1",
"postcss": "^8.4.49",
"prisma": "^6.2.1",
"puppeteer": "^24.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"request": "^2.88.2",
"spotify-web-api-node": "^5.0.2",
"tailwindcss": "^3.4.17",
"tesseract.js": "^6.0.0",
"ytdl-core": "^4.11.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@types/chrome": "^0.0.290",
"@types/express-session": "^1.18.1",
"@types/node": "^18.0.0",
"@types/node-cron": "^3.0.11",
"@types/passport-linkedin-oauth2": "^1.5.6",
"@types/passport-local": "^1.0.38",
"@types/passport-twitter": "^1.0.40",
"@types/pdf-parse": "^1.1.4",
"@types/request": "^2.48.12",
"@types/spotify-web-api-node": "^5.0.11",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"dotenv": "^16.4.7",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}