forked from Klimatbyran/garbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "garbo",
"version": "3.1.9",
"description": "",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "npx prisma migrate deploy && node --import tsx src/index.ts",
"migrate": "npx prisma migrate deploy",
"workers": "node --import tsx src/startWorkers.ts",
"dev-workers": "cross-env DOTENV_CONFIG_PATH=./.env.development node --import tsx --watch src/startWorkers.ts",
"dev-board": "cross-env DOTENV_CONFIG_PATH=./.env.development node --import tsx --watch src/index.ts",
"dev": "concurrently \"npm run dev-board\" \"npm run dev-workers\"",
"import": "node --import=tsx --env-file=.env.development scripts/import-spreadsheet-companies.ts",
"test": "DOTENV_CONFIG_PATH=./.env.test jest",
"prisma": "dotenv -e .env.development -- prisma"
},
"author": "Christian Landgren, William Ryder, Samuel Plumppu mfl",
"license": "MIT License",
"dependencies": {
"@bull-board/api": "^6.3.2",
"@bull-board/express": "^6.3.2",
"@prisma/client": "^5.21.1",
"@types/node": "^20.12.12",
"bullmq": "^5.21.2",
"chromadb": "^1.9.2",
"compromise": "^14.13.0",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"jest": "^29.7.0",
"openai": "^4.68.4",
"pdf-to-img": "^4.1.1",
"pino-http": "^10.3.0",
"prisma-zod-generator": "^0.8.13",
"sharp": "^0.33.5",
"tsx": "^4.19.2",
"wikibase-sdk": "^10.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.8.4",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"deepl-node": "^1.14.0",
"dotenv-cli": "^7.4.2",
"exceljs": "^4.4.0",
"jest": "^29.7.0",
"pino-pretty": "^11.3.0",
"prisma": "^5.21.1",
"supertest": "^7.0.0",
"typescript": "^5.6.3"
},
"overrides": {
"uuid": "^9.0.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"prisma": {
"seed": "node --import=tsx prisma/seed.ts"
}
}