-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
73 lines (73 loc) · 2.36 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
{
"name": "fastify-zod",
"version": "1.4.0",
"description": "Zod integration with Fastify",
"main": "build/index.js",
"scripts": {
"check:types": "tsc -p . --noEmit",
"check:lint": "eslint src",
"check": "npm run check:types && npm run check:lint",
"clean": "rm -rf build",
"build:types": "tsc -p . --emitDeclarationOnly",
"build:babel": "babel src --out-dir build --extensions '.ts' --source-maps",
"build:openapi-spec": "node build/__tests__/generate-spec.fixtures.js",
"build:openapi-client": "rm -rf test-openapi-client && openapi-generator-cli generate && cd test-openapi-client && npm i",
"build": "npm run clean && npm run build:babel && npm run build:openapi-spec && npm run build:openapi-client && npm run build:types",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elierotenberg/fastify-zod.git"
},
"keywords": [
"zod",
"fastify",
"openapi"
],
"author": "Elie Rotenberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elierotenberg/fastify-zod/issues"
},
"homepage": "https://github.com/elierotenberg/fastify-zod#readme",
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@openapitools/openapi-generator-cli": "^2.7.0",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"ajv-errors": "^3.0.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"fastify": "^4.21.0",
"fastify-zod-test-openapi-client": "file:test-openapi-client",
"http-errors": "^2.0.0",
"jest": "^29.6.2",
"node-fetch": "^3.3.2",
"pino-pretty": "^10.2.0",
"prettier": "^3.0.2",
"typed-jest-expect": "^1.0.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"fastify": "^4.15.0"
},
"dependencies": {
"@fastify/swagger": "^8.9.0",
"@fastify/swagger-ui": "^1.9.3",
"@types/js-yaml": "^4.0.5",
"change-case": "^4.1.2",
"fast-deep-equal": "^3.1.3",
"js-yaml": "^4.1.0",
"tslib": "^2.6.1",
"zod": "^3.22.1",
"zod-to-json-schema": "^3.21.4"
}
}