-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.08 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
{
"name": "react-query-lightbase-codegen",
"description": "Fully typed react query code generation tool based on openApi specifications",
"version": "1.6.4",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"files": [
"src",
"dist"
],
"keywords": [
"rest",
"client",
"swagger",
"open-api",
"fetch",
"data fetching",
"code-generation",
"react",
"react-query",
"axios",
"vue-query",
"tanstack"
],
"author": {
"name": "Oliver Winter",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lightbasenl/react-query-codegen"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"tsc": "tsc -p tsconfig.json",
"test": "npm run tsc && node test/script.mjs",
"deploy": "tsc && semantic-release --no-ci",
"updates": "npx npm-check-updates -i",
"prepare": "husky install"
},
"dependencies": {
"case": "1.6.3",
"chalk": "5.3.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"openapi3-ts": "2.0.2",
"swagger2openapi": "7.0.8",
"yamljs": "0.3.0"
},
"devDependencies": {
"@babel/core": "7.24.3",
"@babel/eslint-parser": "7.24.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@react-native-community/eslint-config": "3.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^12.0.0",
"@tanstack/react-query": "5.51.23",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.0",
"@types/node": "20.11.30",
"@types/qs": "6.9.14",
"@types/query-string": "6.3.0",
"@types/yamljs": "0.2.34",
"axios": "1.7.3",
"eslint": "8.57.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "^9.0.11",
"prettier": "3.3.3",
"react": "18.2.0",
"semantic-release": "^23.0.6",
"typescript": "5.4.3"
},
"peerDependencies": {
"@tanstack/react-query": ">= 5.20.0",
"axios": "*"
}
}