build: bump volta node version
[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": {
27a8a097 9 "node": "20.12.1",
f5354275 10 "pnpm": "8.15.6"
11856b30 11 },
c3024c59 12 "packageManager": "pnpm@8.15.6",
11856b30 13 "scripts": {
49ac634f
JB
14 "build": "pnpm build:clean && tsc",
15 "build:clean": "tsc --build --clean",
d7154f8c
JB
16 "start": "node --enable-source-maps dist/main.js",
17 "start:httpd-echo": "node --enable-source-maps httpd-echo.js",
11856b30
JB
18 "test": "echo \"Error: no test specified\" && exit 1"
19 },
20 "keywords": [],
21 "author": "",
22 "license": "ISC",
23 "dependencies": {
76dcfce0 24 "axios": "^1.6.8",
11856b30 25 "node-fetch": "^3.3.2",
73036251 26 "poolifier": "^3.1.29"
11856b30
JB
27 },
28 "devDependencies": {
73036251 29 "@types/node": "^20.12.3",
23c559fb 30 "typescript": "^5.4.3"
11856b30
JB
31 }
32}