-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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
{
"name": "garbo",
"version": "3.10.1-rc.1",
"description": "",
"type": "module",
"exports": {
".": "./src/index.ts"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "node --import tsx src/index.ts",
"migrate": "npx prisma migrate deploy",
"workers": "node --import tsx src/startWorkers.ts",
"dev-workers": "node --import tsx --watch src/startWorkers.ts",
"dev-board": "node -r dotenv/config --import tsx --watch src/index.ts",
"dev-api": "node --import tsx --watch src/index.ts --api-only",
"dev": "concurrently \"npm run dev-board\" \"npm run dev-workers\"",
"import": "node --import=tsx scripts/import-spreadsheet-companies.ts",
"test": "echo 'No test command specified'",
"prisma": "prisma",
"reset": "node --import tsx scripts/dev-reset.ts"
},
"author": "Christian Landgren, William Ryder, Samuel Plumppu mfl",
"license": "MIT License",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.0",
"@bull-board/api": "^6.6.1",
"@bull-board/fastify": "^6.6.1",
"@fastify/cors": "^10.0.2",
"@fastify/static": "^8.0.4",
"@fastify/swagger": "^9.4.2",
"@prisma/client": "^5.22.0",
"@scalar/fastify-api-reference": "^1.25.109",
"@types/node": "^22.10.0",
"bullmq": "^5.28.0",
"chromadb": "^1.9.4",
"compromise": "^14.13.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"fastify": "^5.2.1",
"fastify-plugin": "^5.0.1",
"fastify-type-provider-zod": "^4.0.2",
"openai": "^4.73.1",
"pdf2pic": "^3.1.3",
"pino-http": "^10.4.0",
"prisma-zod-generator": "^0.8.13",
"redis": "^4.7.0",
"sharp": "^0.33.5",
"tsx": "^4.19.2",
"wikibase-sdk": "^10.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.6",
"concurrently": "^9.1.2",
"deepl-node": "^1.15.0",
"exceljs": "^4.4.0",
"pino-pretty": "^13.0.0",
"prisma": "^5.22.0",
"typescript": "^5.7.3"
},
"overrides": {
"uuid": "^9.0.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"prisma": {
"seed": "node --import=tsx prisma/seed.ts"
}
}