-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 KB
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
{
"name": "@snow-tzu/nest-openapi-code-generator",
"version": "0.0.14",
"description": "Contract-first OpenAPI code generator for NestJS with validation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openapi-generate": "./dist/bin/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && npm run copy-templates",
"copy-templates": "cp -r src/templates dist/",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"openapi",
"nestjs",
"codegen",
"contract-first",
"typescript"
],
"author": "ganesan1063@gmail.com",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@nestjs/swagger": "^7.0.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"commander": "^11.0.0",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"repository": "https://github.com/ganesanarun/nest-openapi-code-generator.git"
}