build(deps-dev): apply updates
[poolifier.git] / examples / typescript / http-server-pool / fastify-cluster / package.json
CommitLineData
418077df
JB
1{
2 "$schema": "https://json.schemastore.org/package",
3 "name": "fastify-cluster-pool",
4 "version": "1.0.0",
5 "description": "Fastify cluster pool",
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
4b72aab9 9 "node": "22.2.0",
ce711c4a 10 "pnpm": "9.1.1"
418077df 11 },
ce711c4a 12 "packageManager": "pnpm@9.1.1",
418077df 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",
72744a1b 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"
418077df
JB
20 },
21 "keywords": [],
22 "author": "",
23 "license": "ISC",
24 "dependencies": {
e1f8d700 25 "fastify": "^4.27.0",
00773faa 26 "poolifier": "^4.0.8"
418077df
JB
27 },
28 "devDependencies": {
a97b738b 29 "@rollup/plugin-typescript": "^11.1.6",
c8e1a85c 30 "@types/node": "^20.12.12",
312eb4a0 31 "autocannon": "^7.15.0",
4a6ebc42 32 "rollup": "^4.17.2",
418077df 33 "rollup-plugin-delete": "^2.0.0",
64f02437 34 "tslib": "^2.6.2",
67a3b2fb 35 "typescript": "^5.4.5"
418077df
JB
36 }
37}