ff539824f91f1fe4520225c7676149eb86f3c725
[poolifier.git] / examples / typescript / http-server-pool / express-worker_threads / package.json
1 {
2 "$schema": "https://json.schemastore.org/package",
3 "name": "express-request-pool",
4 "version": "1.0.0",
5 "description": "Express request 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": "pnpm build:clean && tsc",
14 "build:clean": "tsc --build --clean",
15 "start": "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 "express": "^4.19.0",
25 "poolifier": "^3.1.22"
26 },
27 "devDependencies": {
28 "@types/express": "^4.17.21",
29 "@types/node": "^20.11.30",
30 "autocannon": "^7.15.0",
31 "typescript": "^5.4.3"
32 }
33 }