forked from OpenAPITools/openapi-generator-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.75 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
126
127
128
129
130
131
132
133
134
135
{
"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",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/openapi_generator"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenAPITools/openapi-generator-cli.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"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",
"cli": "node ./dist/apps/generator-cli/main.js",
"build": "NODE_OPTIONS=--openssl-legacy-provider 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",
"prepare": "husky install"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/openapi_generator",
"donation": {
"text": "Please sponsor OpenAPI Generator."
}
},
"dependencies": {
"@nestjs/axios": "0.0.8",
"@nestjs/common": "9.3.11",
"@nestjs/core": "9.3.11",
"@nestjs/platform-express": "8.4.7",
"@nuxtjs/opencollective": "0.3.2",
"chalk": "4.1.2",
"commander": "8.3.0",
"compare-versions": "4.1.4",
"concurrently": "6.5.1",
"console.table": "0.10.0",
"fs-extra": "10.1.0",
"inquirer": "8.2.5",
"jsonpath": "1.1.1",
"lodash": "4.17.21",
"reflect-metadata": "0.1.13",
"rxjs": "7.8.0"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@nestjs/schematics": "8.0.11",
"@nestjs/testing": "9.3.11",
"@nrwl/eslint-plugin-nx": "12.10.1",
"@nrwl/jest": "12.10.1",
"@nrwl/nest": "12.10.1",
"@nrwl/node": "12.10.1",
"@nrwl/workspace": "12.10.1",
"@semantic-release/changelog": "5.0.1",
"@types/concurrently": "6.4.0",
"@types/fs-extra": "9.0.13",
"@types/inquirer": "8.2.6",
"@types/jest": "27.5.2",
"@types/jsonpath": "0.2.0",
"@types/lodash": "4.14.191",
"@types/node": "16.18.18",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"dotenv": "16.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.8.0",
"generate-package-json-webpack-plugin": "2.6.0",
"husky": "7.0.4",
"jest": "27.5.1",
"prettier": "2.8.6",
"semantic-release": "17.4.7",
"ts-jest": "27.1.5",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"type-fest": "2.19.0",
"typescript": "4.9.5"
}
}