-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "ragnet",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "node-pg-migrate --config-file migrate.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"description": "",
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@mastra/core": "^0.9.4",
"@mastra/pg": "^0.3.4",
"@mastra/rag": "^0.1.23",
"@types/express": "^5.0.1",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"ai": "^4.3.15",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"node-pg-migrate": "^8.0.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.16.0",
"uuid": "^11.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.18",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^20.11.24",
"@types/pg": "^8.10.0",
"@types/uuid": "^9.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}