d0426ceb280f9f475489502c923a7e2ecd196487
[poolifier.git] / examples / typescript / http-server-pool / fastify-hybrid / package.json
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": {
9 "node": "20.11.1",
10 "pnpm": "8.15.5"
11 },
12 "scripts": {
13 "build": "rollup --config --configPlugin typescript",
14 "start": "node --enable-source-maps dist/main.cjs",
15 "start:esm": "node --enable-source-maps dist/main.js",
16 "test": "echo \"Error: no test specified\" && exit 1",
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"
19 },
20 "keywords": [],
21 "author": "",
22 "license": "ISC",
23 "dependencies": {
24 "fastify": "^4.26.2",
25 "fastify-plugin": "^4.5.1",
26 "poolifier": "^3.1.22"
27 },
28 "devDependencies": {
29 "@rollup/plugin-typescript": "^11.1.6",
30 "@types/node": "^20.11.29",
31 "autocannon": "^7.15.0",
32 "rollup": "^4.13.0",
33 "rollup-plugin-delete": "^2.0.0",
34 "tslib": "^2.6.2",
35 "typescript": "^5.4.2"
36 }
37 }