-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 KB
/
package.json
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
{
"name": "mentor-tool",
"version": "1.0.0",
"engines": {
"node": ">=10.0.0"
},
"target": "ES2020",
"module": "nodenext",
"type": "module",
"description": "A mentor platform for students",
"scripts": {
"start:ts": "tsc -w",
"dev": "cross-env NODE_ENV=development nodemon src/server.js",
"start:prod": "NODE_ENV=production node src/server.js",
"start-all": "concurrently \"cd ../cmrit-mentoring-tool-frontend && yarn run dev\" \"yarn run dev\" \"cd ../cmrit-mentoring-python-api && uvicorn main:app --port 8080 --reload\"",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreadwing5/Tourify.git"
},
"author": "Sachin Kumar",
"license": "ISC",
"bugs": {
"url": "https://github.com/dreadwing5/Tourify/issues"
},
"homepage": "https://github.com/dreadwing5/Tourify#readme",
"dependencies": {
"@langchain/community": "^0.2.4",
"@langchain/core": "^0.2.2",
"@langchain/openai": "^0.0.34",
"@supabase/supabase-js": "^2.21.0",
"axios": "^1.7.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.1.0",
"fs": "^0.0.1-security",
"helmet": "^5.0.1",
"jsonwebtoken": "^9.0.0",
"langchain": "^0.2.3",
"mongoose": "^7.8.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.1",
"openai": "^4.47.1",
"path": "^0.12.7",
"socket.io": "^4.5.4",
"validator": "^13.7.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^5.0.0",
"xss-clean": "^0.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.3",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"typescript": "^5.0.4"
}
}