-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 953 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 953 Bytes
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
{
"name": "@uni-backups/worker",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"start": "bun run dist/index.js",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run",
"test:integration": "vitest run -c vitest.integration.config.ts",
"test:docker": "vitest run -c vitest.docker.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@uni-backups/queue": "workspace:*",
"@uni-backups/shared": "workspace:*",
"bullmq": "^5.70.1",
"hono": "^4.12.2",
"ioredis": "^5.9.3"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"ioredis-mock": "^8.13.1",
"vite-tsconfig-paths": "^6.1.1"
}
}