-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 995 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 995 Bytes
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
{
"name": "omni-ai",
"version": "1.0.0",
"description": "An AI Integration Platform where users can interact with multiple AI systems, such as ChatGPT and Gemini, which will collaborate to answer questions or offer solutions.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js -e css,ejs,js,json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"connect-mongo": "^5.1.0",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.0",
"express-validator": "^7.3.1",
"google-auth-library": "^9.14.1",
"helmet": "^8.1.0",
"method-override": "^3.0.0",
"mongoose": "^8.7.0"
},
"overrides": {
"cookie": "0.7.0"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}