-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"name": "nest-bun",
"version": "0.0.1",
"author": "Devarsh Bhatt",
"license": "UNLICENSED",
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start:dev": "bun --watch ./src/main.ts",
"start:debug": "nest start --debug --watch",
"start:prod": "bun ./src/main.ts",
"start:app": "./nest-bun",
"build": "bun build ./src/main.ts --compile --target bun --outfile=nest-bun",
"build:minify": "bun build ./src/main.ts --compile --minify --target bun --outfile=nest-bun",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@nestjs/common": "^10.4.12",
"@nestjs/core": "^10.4.12",
"@nestjs/platform-express": "^10.4.12"
},
"devDependencies": {
"@grpc/grpc-js": "^1.12.2",
"@grpc/proto-loader": "^0.7.13",
"@nestjs/cli": "^10.4.8",
"@nestjs/microservices": "^10.4.12",
"@nestjs/platform-socket.io": "^10.4.12",
"@nestjs/schematics": "^10.2.3",
"@types/express": "^4.17.21",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"amqp-connection-manager": "^4.1.14",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"ioredis": "^5.4.1",
"kafkajs": "^2.2.4",
"mqtt": "^5.10.3",
"nats": "^2.28.2",
"prettier": "^3.4.1",
"typescript": "^5.7.2"
},
"trustedDependencies": [
"@nestjs/core",
"protobufjs"
]
}