-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "@youneed/server",
"version": "0.1.0",
"description": "Tiny typed HTTP server (controllers, middleware, cache).",
"type": "module",
"license": "ISC",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "tsx tests/server.test.ts",
"bench": "node bench/bench.mjs",
"bench:quick": "node bench/bench.mjs --quick",
"bench:load": "tsx bench/throughput.bench.ts",
"bench:frameworks": "tsx bench/frameworks.bench.ts"
},
"devDependencies": {
"@youneed/test": "workspace:*",
"@youneed/test-reporter-console": "workspace:*",
"@youneed/kv": "workspace:*",
"@elysiajs/node": "^1.2.6",
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/platform-express": "^10.4.15",
"autocannon": "^8.0.0",
"elysia": "^1.2.25",
"express": "^4.21.2",
"fastify": "^5.8.5",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"tslib": "^2.8.1"
},
"dependencies": {
"@youneed/core": "workspace:*"
}
}