-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 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
{
"name": "course_react_website",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"serve": "cross-env NODE_ENV=development nodemon ./backend/server.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend",
"start": "cross-env NODE_ENV=production node ./backend/server.js"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@heroicons/react": "^2.2.0",
"@huggingface/inference": "^2.8.1",
"@huggingface/transformers": "^3.3.3",
"@langchain/community": "^0.3.29",
"@langchain/core": "^0.3.39",
"@langchain/google-genai": "^0.1.8",
"@pinecone-database/pinecone": "^4.1.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.3.15",
"marked": "^15.0.4",
"mongoose": "^8.9.1",
"nodemailer": "^6.10.0",
"react-icons": "^5.4.0",
"react-player": "^2.16.0",
"react-toastify": "^11.0.2",
"react-type-animation": "^3.2.0"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}