-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.45 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
47
48
49
50
{
"name": "virtual-failover",
"version": "0.0.1",
"description": "",
"author": "Yoann Gendrey",
"private": true,
"license": "UNLICENSED",
"scripts": {
"format": "biome format --write ./src",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch --exec \"bun run\" | pino-pretty",
"start:debug": "nest start --debug --watch --exec \"bun run\"",
"start:prod": "bun dist/main.js",
"test": "bun test",
"test:integration": "bun test tests/integration/",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@nestjs/common": "^11.1.2",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.2",
"@nestjs/testing": "^11.1.2",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.29",
"@vitest/coverage-v8": "^3.2.1",
"bun": "^1.2.15",
"cockatiel": "^3.2.1",
"iproute": "^2.3.0",
"luxon": "^3.6.1",
"nestjs-pino": "^4.4.0",
"pino-http": "^10.5.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"unplugin-swc": "^1.5.4",
"vitest": "^3.2.1",
"zod": "^3.25.49"
},
"devDependencies": {
"@types/luxon": "^3.6.2",
"@nestjs/cli": "^11.0.7",
"@types/bun": "^1.2.15",
"@types/node": "^22.15.29",
"pino-pretty": "^13.0.0"
}
}