-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
{
"name": "nest-playground",
"version": "1.0.0",
"description": "A tiny personal playground to test out the latest and greatest stuff",
"author": "Lukas Spiss <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"build": "nest build",
"format": "biome format --write ./src ./test",
"start": "nest start",
"start:watch": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "biome lint src/ test/",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest run --config ./test/vitest.e2e.config.ts",
"typecheck": "tsc --noEmit",
"migrations:gen": "drizzle-kit generate:pg --config=drizzle.config.ts",
"migrations:run": "drizzle-kit push:pg --config=drizzle.config.ts"
},
"dependencies": {
"@fastify/static": "^6.12.0",
"@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-fastify": "^10.3.0",
"@nestjs/swagger": "^7.1.17",
"drizzle-orm": "^0.29.3",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@biomejs/biome": "1.5.1",
"@nestjs/cli": "^10.3.0",
"@nestjs/schematics": "^10.1.0",
"@nestjs/testing": "^10.3.0",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.102",
"@types/node": "^20.11.0",
"@types/pg": "^8.10.9",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^1.2.0",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.20.12",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"unplugin-swc": "^1.4.4",
"vitest": "^1.2.0"
},
"volta": {
"node": "20.11.0",
"npm": "10.2.1"
}
}