-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.37 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
{
"name": "zod-express-openapi-routes",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"start": "npm run build && node ./dist/main.js",
"build": "tsc -b ./tsconfig.json",
"dev": "tsnd --inspect=9340 -- src/main.ts",
"debug": "node --loader ts-node/esm --inspect-brk=9340 .\\src\\main.ts",
"test": "tsnd src/tests.ts",
"ogen": "npx openapi-generator-cli generate -i ./swagger.json -g typescript-fetch -o ./clients/openapi-generator-client",
"swgen": "java -jar swagger-codegen-cli-3.0.54.jar generate -i swagger.json -l typescript-fetch -o ./clients/swagger-codegen-client"
},
"keywords": [],
"author": "Luke Zehrung",
"license": "MIT",
"dependencies": {
"@anatine/zod-openapi": "^2.2.3",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.13.3",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.19",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"npm-run-all": "^4.1.5",
"openapi-schema-validator": "^12.1.0",
"openapi3-ts": "^4.1.2",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"swagger-typescript-codegen": "^3.2.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}