-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "torii-bot",
"module": "index.ts",
"version": "0.0.0",
"type": "module",
"main": "dist/src/server.js",
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@types/express": "^4.17.21",
"@types/node": "^20.16.6",
"@types/node-cron": "^3.0.11",
"bun-types": "latest",
"graphql": "^16.9.0",
"graphql-request": "^6.1.0"
},
"dependencies": {
"@dojoengine/core": "workspace:*",
"@pinecone-database/pinecone": "^1.1.3",
"@sapphire/decorators": "^6.1.0",
"@sapphire/framework": "^5.2.1",
"discord.js": "^14.16.2",
"express": "^4.21.0",
"graphql-tag": "^2.12.6",
"langchain": "^0.0.200",
"node-cron": "^3.0.3",
"openai": "^4.63.0",
"twitter-api-v2": "^1.17.2",
"typescript": "^5.6.2"
},
"scripts": {
"build": "tsc",
"serve": "tsc && node dist/src/index.js",
"codegen": "graphql-codegen",
"test": "echo \"Error: no test specified\""
}
}