-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.52 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
{
"name": "@alex8628/trpc-swagger",
"private": false,
"license": "MIT",
"version": "1.2.5",
"description": "tRPC Swagger Wrapper",
"author": "https://github.com/giftedunicorn",
"homepage": "https://github.com/giftedunicorn/trpc-swagger",
"bugs": {
"url": "https://github.com/giftedunicorn/trpc-swagger/issues"
},
"keywords": [
"trpc",
"openapi",
"swagger"
],
"typings": "build/index.d.ts",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/giftedunicorn/trpc-swagger.git"
},
"scripts": {
"test": "tsc --noEmit && jest --verbose",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "eslint --fix \"./packages/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"./packages/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"./packages/**/*.{js,jsx,ts,tsx}\""
},
"workspaces": [
".",
"examples/with-express",
"examples/with-fastify",
"examples/with-interop",
"examples/with-nextjs",
"examples/with-nextjs-app",
"examples/with-nuxtjs",
"examples/with-serverless"
],
"peerDependencies": {
"@trpc/server": "11.0.0-next-beta.281",
"zod": "^3.14.4"
},
"dependencies": {
"co-body": "^6.1.0",
"h3": "^1.11.1",
"lodash.clonedeep": "^4.5.0",
"node-mocks-http": "^1.14.1",
"openapi-types": "^12.1.3",
"zod-to-json-schema": "^3.22.5"
},
"devDependencies": {
"@trpc/client": "11.0.0-next-beta.281",
"@trpc/server": "11.0.0-next-beta.281",
"@types/aws-lambda": "^8.10.136",
"@types/co-body": "^6.1.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.11.30",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"aws-lambda": "^1.0.7",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.19.1",
"fastify": "^4.26.2",
"jest": "^29.7.0",
"next": "^14.1.4",
"node-fetch": "^2.7.0",
"openapi-schema-validator": "^12.1.3",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"superjson": "^1.13.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"zod": "^3.22.4"
},
"directories": {
"example": "examples",
"test": "test"
}
}