-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
{
"name": "@nanogiants/nestjs-swagger-api-exception-decorator",
"version": "1.6.11",
"description": "NestJS Swagger decorator for API exceptions",
"main": "./dist/index",
"types": "./dist/index",
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && tsc -b tsconfig.build.json",
"lint": "eslint -c .eslintrc.js --ext .ts src --fix",
"lint:all": "npm run lint && cd demo && npm run lint",
"prepack": "npm run lint && npm run prepublishOnly",
"test": "jest",
"test:update-snapshots": "jest -u"
},
"keywords": [
"nestjs",
"swagger",
"api",
"exception"
],
"license": "MIT",
"author": "NanoGiants GmbH",
"homepage": "https://nanogiants.github.io/nestjs-swagger-api-exception-decorator/",
"repository": {
"type": "git",
"url": "https://github.com/nanogiants/nestjs-swagger-api-exception-decorator.git"
},
"peerDependencies": {
"@nestjs/common": "^7.6.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/swagger": "^4.8.1 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@nestjs/swagger": "^7.1.6",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"pretty-quick": "^3.1.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120,
"trailingComma": "all",
"arrowParens": "avoid"
}
}