-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "@kiyasov/platform-hono",
"version": "1.3.14",
"description": "Nest adapter for Hono",
"author": "Islam Kiiasov",
"repository": {
"type": "git",
"url": "https://github.com/kiyasov/platform-hono"
},
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@apollo/server": "^4.11.0",
"@hono/node-server": "^1.13.2",
"@nestjs/apollo": "^12.2.1",
"@nestjs/graphql": "^12.2.1",
"hono": "^4.6.6"
},
"devDependencies": {
"@nestjs/cli": "^10.4.5",
"@nestjs/common": "^10.4.6",
"@nestjs/core": "^10.4.6",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.39",
"@types/autocannon": "^7.12.5",
"@types/bun": "^1.1.12",
"@types/busboy": "^1.5.4",
"autocannon": "^7.15.0",
"bun": "^1.1.32",
"graphql": "^16.9.0",
"graphql-subscriptions": "^2.0.0",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"tsc": "^2.0.4",
"typescript": "^5.6.3"
},
"scripts": {
"build:esm": "tsc --p tsconfig.esm.json",
"build:cjs": "tsc --p tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"dev": "cd example && yarn nest start -w --copy-files",
"dev:bun": "cd example && nest start -w --copy-files --exec \"bun run\"",
"benchmark": "yarn dev & ( sleep 5 && autocannon -c 200 -d 5 -p 10 http://localhost:3000 )",
"benchmark:bun": "yarn dev:bun & ( sleep 5 && autocannon -c 200 -d 5 -p 10 http://localhost:3000 )",
"benchmark:bun:file": "yarn run dev:bun & ( sleep 5 && bun run ./benchmarks/benchmark.mjs)",
"benchmark:node:file": "yarn run dev & ( sleep 5 && node ./benchmarks/benchmark.mjs)"
},
"packageManager": "yarn@4.4.0"
}