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": {
506aa7e0 9 "node": "20.12.2",
ba0ad5be 10 "pnpm": "9.0.6"
11856b30 11 },
ba0ad5be 12 "packageManager": "pnpm@9.0.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",
4f48f613 26 "poolifier": "^3.1.30"
11856b30
JB
27 },
28 "devDependencies": {
78338da8 29 "@types/node": "^20.12.7",
d12c545f 30 "typescript": "^5.4.5"
11856b30
JB
31 }
32}