-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "@backengine/codegen",
"version": "3.0.0",
"description": "Generate code for Backengine projects.",
"bin": "build/index.js",
"files": [
"build"
],
"license": "MIT",
"keywords": [
"javascript",
"typescript",
"codegen",
"backengine",
"supabase"
],
"author": "Backengine",
"scripts": {
"build": "tsc",
"dev": "tsx watch index.ts"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"axios": "^1.6.8",
"change-case-all": "^1.0.15",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"gradient-string": "^2.0.2",
"json-schema-to-typescript": "^13.1.2",
"pluralize": "^8.0.0",
"prettier": "^3.0.0",
"swagger-axios-codegen": "^0.16.13",
"ts-morph": "^22.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/gradient-string": "^1.1.2",
"@types/node": "^20.4.2",
"@types/pluralize": "^0.0.30",
"openapi-types": "^12.1.3",
"openapi-typescript": "^7.0.0-next.8",
"tsx": "^4.7.1",
"typescript": "^5.1.6"
}
}