build(deps-dev): apply updates
[poolifier.git] / examples / typescript / http-server-pool / fastify-hybrid / package.json
CommitLineData
3b311539
JB
1{
2 "$schema": "https://json.schemastore.org/package",
3 "name": "fastify-hybrid-pool",
4 "version": "1.0.0",
5 "description": "Fastify hybrid pool",
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
506aa7e0 9 "node": "20.12.2",
e1e012cc 10 "pnpm": "9.0.2"
3b311539 11 },
e1e012cc 12 "packageManager": "pnpm@9.0.2",
3b311539 13 "scripts": {
c2515a41 14 "build": "rollup --config --configPlugin typescript",
d7154f8c
JB
15 "start": "node --enable-source-maps dist/main.cjs",
16 "start:esm": "node --enable-source-maps dist/main.js",
edf8ce4e 17 "test": "echo \"Error: no test specified\" && exit 1",
aa1e0433 18 "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",
66f0c14c 19 "benchmark:factorial": "autocannon -c 100 -d 30 -p 10 http://localhost:8080/api/factorial/50000"
3b311539
JB
20 },
21 "keywords": [],
22 "author": "",
23 "license": "ISC",
24 "dependencies": {
4a3ee52b 25 "fastify": "^4.26.2",
3b311539 26 "fastify-plugin": "^4.5.1",
bbef153f 27 "poolifier": "^3.1.29"
3b311539
JB
28 },
29 "devDependencies": {
169acbcf 30 "@rollup/plugin-typescript": "^11.1.6",
78338da8 31 "@types/node": "^20.12.7",
312eb4a0 32 "autocannon": "^7.15.0",
eea9f8d7 33 "rollup": "^4.14.3",
3b311539 34 "rollup-plugin-delete": "^2.0.0",
991fc468 35 "tslib": "^2.6.2",
e334515b 36 "typescript": "^5.4.5"
3b311539
JB
37 }
38}