build(deps-dev): apply updates
[poolifier.git] / examples / typescript / http-client-pool / package.json
CommitLineData
11856b30
JB
1{
2 "$schema": "https://json.schemastore.org/package",
b2b02b3d 3 "name": "http-client-pool",
11856b30 4 "version": "1.0.0",
b2b02b3d 5 "description": "HTTP client pool",
11856b30
JB
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
1c5b9068 9 "node": "20.9.0",
3445d1c4 10 "pnpm": "8.10.0"
11856b30
JB
11 },
12 "scripts": {
49ac634f
JB
13 "build": "pnpm build:clean && tsc",
14 "build:clean": "tsc --build --clean",
11856b30 15 "start": "node dist/main.js",
7e80208e 16 "start:httpd-echo": "node httpd-echo.js",
11856b30
JB
17 "test": "echo \"Error: no test specified\" && exit 1"
18 },
19 "keywords": [],
20 "author": "",
21 "license": "ISC",
22 "dependencies": {
281812ea 23 "axios": "^1.6.0",
11856b30 24 "node-fetch": "^3.3.2",
3b4bce8d 25 "poolifier": "^3.0.5"
11856b30
JB
26 },
27 "devDependencies": {
b58abe92 28 "@types/node": "^20.8.10",
a30da2ff 29 "typescript": "^5.2.2"
11856b30
JB
30 }
31}