-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.9 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
{
"name": "@kimyu0218/swagger-decorator-builder",
"version": "0.0.7",
"description": "This project is a Swagger Decorator Builder designed to **simplify the creation of Swagger decorators for API documentation**.",
"author": "kimyu0218 <[email protected]>",
"license": "MIT",
"main": "dist/swagger-decorator-builder",
"module": "dist/swagger-decorator-builder",
"typings": "dist/swagger-decorator-builder",
"files": [
"dist/swagger-decorator-builder/"
],
"scripts": {
"build": "nest build",
"prepublishOnly": "npm run build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.0.0",
"@nestjs/swagger": "^7.1.17"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kimyu0218/swagger-decorator-builder.git"
},
"bugs": {
"url": "https://github.com/kimyu0218/swagger-decorator-builder/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/kimyu0218/swagger-decorator-builder#readme",
"keywords": [
"swagger",
"decorator",
"api"
]
}