build(deps): bump express
[poolifier.git] / examples / typescript / http-server-pool / express-worker_threads / package.json
CommitLineData
fac9ce96
JB
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": {
434206de 9 "node": "20.11.1",
1bbea1bc 10 "pnpm": "8.15.5"
fac9ce96
JB
11 },
12 "scripts": {
13 "build": "pnpm build:clean && tsc",
14 "build:clean": "tsc --build --clean",
d7154f8c 15 "start": "node --enable-source-maps dist/main.js",
72744a1b 16 "test": "echo \"Error: no test specified\" && exit 1",
aa1e0433
JB
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"
fac9ce96
JB
19 },
20 "keywords": [],
21 "author": "",
22 "license": "ISC",
23 "dependencies": {
8b5e8e9e 24 "express": "^4.19.2",
732d607d 25 "poolifier": "^3.1.22"
fac9ce96
JB
26 },
27 "devDependencies": {
4882d876 28 "@types/express": "^4.17.21",
3c768989 29 "@types/node": "^20.11.30",
312eb4a0 30 "autocannon": "^7.15.0",
23c559fb 31 "typescript": "^5.4.3"
fac9ce96
JB
32 }
33}