build(deps-dev): bump @types/node
[poolifier.git] / examples / typescript / http-server-pool / fastify-worker_threads / package.json
CommitLineData
a8706532
JB
1{
2 "$schema": "https://json.schemastore.org/package",
219d4044 3 "name": "fastify-plugin-request-pool",
a8706532 4 "version": "1.0.0",
d2bc8d80 5 "description": "Fastify plugin request pool",
a8706532
JB
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
434206de 9 "node": "20.11.1",
1bbea1bc 10 "pnpm": "8.15.5"
a8706532
JB
11 },
12 "scripts": {
13 "build": "pnpm build:clean && tsc",
14 "build:clean": "tsc --build --clean",
d7154f8c 15 "start": "node --enable-source-maps dist/main.js",
72744a1b 16 "test": "echo \"Error: no test specified\" && exit 1",
aa1e0433
JB
17 "benchmark:echo": "autocannon -c 100 -d 30 -p 10 -m POST -H Content-Type=application/json -b '{\"key1\":\"value1\", \"key2\":\"value2\"}' http://localhost:8080/api/echo",
18 "benchmark:factorial": "autocannon -c 100 -d 30 -p 10 http://localhost:8080/api/factorial/30"
a8706532
JB
19 },
20 "keywords": [],
21 "author": "",
22 "license": "ISC",
23 "dependencies": {
4a3ee52b 24 "fastify": "^4.26.2",
a8706532 25 "fastify-plugin": "^4.5.1",
2cbc8c4b 26 "poolifier": "^3.1.22"
a8706532
JB
27 },
28 "devDependencies": {
1877e2cf 29 "@types/node": "^20.11.30",
312eb4a0 30 "autocannon": "^7.15.0",
dcd3f113 31 "typescript": "^5.4.2"
a8706532
JB
32 }
33}