forked from projnanda/list-39
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 879 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
{
"name": "list39",
"version": "1.0.0",
"description": "Clean and simple platform for managing AI agent identities (agentfacts)",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["agentfacts", "ai", "agents", "nlip", "identity"],
"author": "List39",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.0.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"express-session": "^1.17.3",
"connect-mongo": "^5.1.0",
"dotenv": "^16.3.1",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"uuid": "^9.0.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"express-rate-limit": "^7.1.5"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}