-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 KB
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
{
"name": "@query/api",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./client": "./src/client.ts",
"./trpc-server": "./src/trpc-server.ts",
"./server": "./src/index.ts",
"./context": "./src/context.ts",
"./middleware": "./src/middleware.ts",
"./middleware/cache": "./src/middleware/cache.ts",
"./middleware/http-security": "./src/middleware/http-security.ts",
"./middleware/security": "./src/middleware/security.ts",
"./trpc": "./src/trpc.ts"
},
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@query/auth": "workspace:*",
"@query/db": "workspace:*",
"@tanstack/react-query": "5.90.12",
"@trpc/client": "^11.8.0",
"@trpc/next": "^11.8.0",
"@trpc/react-query": "^11.8.0",
"@trpc/server": "^11.8.0",
"drizzle-orm": "0.45.2",
"image-size": "2.0.2",
"minimatch": "10.2.3",
"sanitize-html": "2.17.0",
"superjson": "2.2.6",
"zod": "3.23.8"
},
"devDependencies": {
"@query/tsconfig": "workspace:*",
"@types/sanitize-html": "2.16.0",
"typescript": "5.7.2",
"vitest": "4.0.18"
}
}