-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "nestjs-http-promise",
"version": "4.0.0",
"keywords": [
"nestjs",
"http",
"promise",
"retry",
"retries",
"axios"
],
"description": "promise implementation of nestjs http module with retries feature using axios-retry and axios",
"author": "Ben Hason",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"url": "https://github.com/benhason1/nestjs-http-promise#readme",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepare": "npm run build",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"publish:beta": "npm publish --access public --tag beta",
"prepublish:beta": "npm run build"
},
"dependencies": {
"axios-retry": "^4.5.0"
},
"devDependencies": {
"@nestjs/common": "^11.0.7",
"@nestjs/core": "^11.0.7",
"@nestjs/platform-express": "^11.0.7",
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"reflect-metadata": "^0.2.2",
"axios": "^1.4.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/benhason1/nestjs-http-promise"
}
}