build(deps-dev): apply updates
[poolifier.git] / examples / typescript / http-client-pool / package.json
1 {
2 "$schema": "https://json.schemastore.org/package",
3 "name": "http-client-pool",
4 "version": "1.0.0",
5 "description": "HTTP client pool",
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
9 "node": "22.0.0",
10 "pnpm": "9.0.6"
11 },
12 "packageManager": "pnpm@9.0.6",
13 "scripts": {
14 "build": "pnpm build:clean && tsc",
15 "build:clean": "tsc --build --clean",
16 "start": "node --enable-source-maps dist/main.js",
17 "start:httpd-echo": "node --enable-source-maps httpd-echo.js",
18 "test": "echo \"Error: no test specified\" && exit 1"
19 },
20 "keywords": [],
21 "author": "",
22 "license": "ISC",
23 "dependencies": {
24 "axios": "^1.6.8",
25 "node-fetch": "^3.3.2",
26 "poolifier": "^4.0.1"
27 },
28 "devDependencies": {
29 "@types/node": "^20.12.8",
30 "typescript": "^5.4.5"
31 }
32 }