-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 981 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 981 Bytes
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
{
"name": "model-catalog-api",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"codegen": "graphql-codegen --config codegen.ts",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^4.1.5",
"@fastify/cors": "^11.2.0",
"@fastify/jwt": "^10.0.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"fastify": "^5.7.4",
"fastify-openapi-glue": "^4.10.2",
"graphql": "^16.12.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.1.1",
"@graphql-codegen/typescript": "^5.0.8",
"@graphql-codegen/typescript-document-nodes": "^5.0.8",
"@graphql-codegen/typescript-operations": "^5.0.8",
"@types/node": "^25.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}