forked from pkarolyi/garden-snail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "garden-snail",
"version": "1.3.0",
"description": "Turborepo remote cache server",
"author": "Peter Karolyi <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest run -c ./test/vitest.config.e2e.ts",
"test:e2e:watch": "vitest -c ./test/vitest.config.e2e.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "3.654.0",
"@aws-sdk/lib-storage": "3.654.0",
"@nestjs/common": "10.4.4",
"@nestjs/config": "3.2.3",
"@nestjs/core": "10.4.4",
"@nestjs/platform-fastify": "10.4.4",
"fastify": "4.28.1",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"zod": "3.23.8"
},
"devDependencies": {
"@nestjs/cli": "10.4.5",
"@nestjs/schematics": "10.1.4",
"@nestjs/testing": "10.4.4",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.26",
"@types/node": "20.16.5",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"@vitest/coverage-v8": "2.1.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"source-map-support": "0.5.21",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.2",
"unplugin-swc": "1.5.1",
"vitest": "2.1.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.18.0"
}
}