forked from ferdikoomen/openapi-typescript-codegen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 4.15 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
{
"name": "@jbcz/openapi-hooks-codegen",
"version": "0.0.41",
"description": "Library that generates React Hooks based on the OpenAPI specification.",
"author": "Jibencaozuo Playground",
"homepage": "https://github.com/jibencaozuo-playground/openapi-hooks-codegen",
"repository": {
"type": "git",
"url": "git+https://github.com/jibencaozuo-playground/openapi-hooks-codegen"
},
"bugs": {
"url": "https://github.com/jibencaozuo-playground/openapi-hooks-codegen/issues"
},
"license": "MIT",
"keywords": [
"openapi",
"swagger",
"codegen",
"generator",
"client",
"typescript",
"yaml",
"json",
"fetch",
"node"
],
"maintainers": [
{
"name": "Jibencaozuo Playground",
"email": "dev@jibencaozuo.com"
}
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"openapi": "bin/index.js",
"openapi-sync-gitea": "bin/syncGitea.js",
"openapi-sync-github": "bin/syncGitHub.js"
},
"files": [
"bin/index.js",
"bin/syncGitea.js",
"dist/index.js",
"types/index.d.ts"
],
"scripts": {
"clean": "rimraf ./dist ./test/generated ./test/e2e/generated ./samples/generated ./coverage ./node_modules/.cache",
"build": "rollup --config --environment NODE_ENV:development",
"build:watch": "rollup --config --environment NODE_ENV:development --watch",
"release": "rollup --config --environment NODE_ENV:production",
"run": "node ./test/index.js",
"test": "jest --selectProjects UNIT",
"test:update": "jest --selectProjects UNIT --updateSnapshot",
"test:watch": "jest --selectProjects UNIT --watch",
"test:coverage": "jest --selectProjects UNIT --coverage",
"test:e2e": "jest --selectProjects E2E --runInBand",
"eslint": "eslint \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\"",
"eslint:fix": "eslint \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --fix",
"prettier": "prettier \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --check",
"prettier:fix": "prettier \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --write",
"prepublish": "yarn run clean && yarn run release",
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b"
},
"dependencies": {
"@types/lodash.merge": "^4.6.6",
"ajv": "^8.6.2",
"ajv-formats": "^2.1.1",
"better-ajv-errors": "^0.7.0",
"camelcase": "^6.2.0",
"commander": "^8.0.0",
"cross-spawn": "^7.0.3",
"handlebars": "4.7.7",
"js-yaml": "^4.0.0",
"json-schema-ref-parser": "^9.0.7",
"lodash.merge": "^4.6.2",
"mkdirp": "^1.0.4",
"node-fetch": "2.6.1",
"prettier": "2.4.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.14.8",
"@babel/preset-env": "7.14.9",
"@babel/preset-typescript": "7.14.5",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@types/cross-spawn": "^6.0.2",
"@types/express": "4.17.13",
"@types/jest": "26.0.24",
"@types/js-yaml": "4.0.2",
"@types/node": "16.4.10",
"@types/node-fetch": "2.5.12",
"@types/qs": "6.9.7",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"codecov": "3.8.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"express": "4.17.1",
"fastify": "^3.24.0",
"form-data": "4.0.0",
"glob": "7.1.7",
"jest": "27.0.6",
"jest-cli": "26.6.3",
"jotai": "^1.4.4",
"puppeteer": "10.1.0",
"qs": "6.10.1",
"rollup": "2.56.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.30.0",
"typescript": "4.5.2"
}
}