-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 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
{
"name": "@courselit/queue",
"version": "0.25.10",
"type": "module",
"private": true,
"packageManager": "pnpm@9.14.2",
"scripts": {
"build": "tsup",
"tsc:build": "tsc",
"check-types": "tsc --noEmit",
"start": "node dist/index.js",
"build:dev": "tsup --watch",
"dev": "node --watch --env-file .env.local --import tsx src/index.ts"
},
"dependencies": {
"@courselit/common-logic": "workspace:^",
"@courselit/common-models": "workspace:^",
"@courselit/email-editor": "workspace:^",
"@courselit/orm-models": "workspace:^",
"@courselit/utils": "workspace:^",
"@types/jsdom": "^21.1.7",
"bullmq": "^4.14.0",
"express": "^4.18.2",
"jsdom": "^26.1.0",
"liquidjs": "^10.11.1",
"mongodb": "^6.15.0",
"mongoose": "^8.13.1",
"nodemailer": "^6.9.2",
"pino": "^8.14.1",
"pino-mongodb": "^4.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@shelf/jest-mongodb": "^5.2.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.14",
"@types/nodemailer": "^6.4.8",
"mongodb-memory-server": "^10.1.4",
"ts-jest": "^29.4.4",
"tsconfig": "workspace:^",
"tsup": "^7.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
}
}