Merge pull request #1048 from poolifier/combined-prs-branch
[poolifier.git] / examples / typescript / http-server-pool / express-cluster / package.json
CommitLineData
15a9c195
JB
1{
2 "$schema": "https://json.schemastore.org/package",
3 "name": "express-cluster-pool",
4 "version": "1.0.0",
5 "description": "Express cluster pool",
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
9 "node": "20.5.1",
4e005476 10 "pnpm": "8.7.0"
15a9c195
JB
11 },
12 "scripts": {
13 "build": "rollup --config",
14 "start": "node dist/main.cjs",
15 "start:esm": "node dist/main.mjs",
72744a1b
JB
16 "test": "echo \"Error: no test specified\" && exit 1",
17 "benchmark:echo": "autocannon -c 60 -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 60 -d 30 -p 10 http://localhost:8080/api/factorial/30"
15a9c195
JB
19 },
20 "keywords": [],
21 "author": "",
22 "license": "ISC",
23 "dependencies": {
24 "express": "^4.18.2",
4fe9008c 25 "poolifier": "^2.6.39"
15a9c195
JB
26 },
27 "devDependencies": {
0bebc64e 28 "@rollup/plugin-typescript": "^11.1.3",
15a9c195 29 "@types/express": "^4.17.17",
3f988079 30 "@types/node": "^20.5.7",
72744a1b 31 "autocannon": "^7.12.0",
62ca9d9e 32 "rollup": "^3.28.1",
15a9c195 33 "rollup-plugin-delete": "^2.0.0",
6680f3d8 34 "tslib": "^2.6.2",
4fb13fc1 35 "typescript": "^5.2.2"
15a9c195
JB
36 }
37}