forked from OpenAPITools/openapi-generator-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "openapitools",
"version": "0.0.0-development",
"license": "Apache-2.0",
"private": false,
"author": {
"name": "OpenAPI Tools",
"url": "https://openapitools.org/",
"email": "team@openapitools.org"
},
"contributors": [
{
"name": "Kay Schecker",
"email": "sayhello@kay-schecker.de",
"url": "https://www.kay-schecker.de"
}
],
"homepage": "https://github.com/OpenAPITools/openapi-generator-cli",
"bugs": "https://github.com/OpenAPITools/openapi-generator-cli/issues",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git@github.com:OpenAPITools/openapi-generator-cli.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"rest-api",
"rest-client",
"sdk",
"generator",
"restful-api",
"api",
"api-client",
"api-server",
"openapi3",
"openapi",
"oas",
"rest"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"nx": "nx",
"start": "nx serve",
"start:verdaccio": "verdaccio",
"cli": "node ./dist/apps/generator-cli/main.js",
"build": "nx build",
"publish": "npm run build && npm publish ./dist/apps/generator-cli",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"semantic-release": "semantic-release"
},
"dependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/platform-express": "^7.0.0",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"compare-versions": "^3.6.0",
"concurrently": "^5.3.0",
"console.table": "^0.10.0",
"fs-extra": "^9.0.1",
"inquirer": "^7.3.3",
"jsonpath": "^1.0.2",
"lodash": "^4.17.20",
"reflect-metadata": "^0.1.13",
"rxjs": "~6.5.5",
"verdaccio": "^4.8.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@nrwl/eslint-plugin-nx": "10.2.1",
"@nrwl/jest": "10.2.1",
"@nrwl/nest": "10.2.1",
"@nrwl/node": "10.2.1",
"@nrwl/workspace": "10.2.1",
"@semantic-release/changelog": "^5.0.1",
"@types/concurrently": "^5.2.1",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.1",
"@types/jest": "26.0.8",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.161",
"@types/node": "~8.9.4",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"dotenv": "6.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.0.0",
"generate-package-json-webpack-plugin": "^1.1.2",
"husky": "^4.3.0",
"jest": "26.2.2",
"prettier": "2.0.4",
"semantic-release": "^17.1.2",
"ts-jest": "26.1.4",
"ts-node": "~7.0.0",
"tslint": "~6.0.0",
"type-fest": "^0.16.0",
"typescript": "~3.9.3"
}
}