-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@sthrift/graphql",
"version": "1.0.0",
"private": true,
"type": "module",
"files": [
"dist",
"src/schema/**/*.graphql"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"scripts": {
"prebuild": "biome lint",
"build": "tsc --build",
"watch": "tsc --build --watch",
"test": "vitest run",
"test:arch": "vitest run --config vitest.arch.config.ts",
"test:coverage:node": "vitest run --coverage",
"test:watch": "vitest",
"lint": "biome lint",
"clean": "rimraf dist"
},
"dependencies": {
"@apollo/server": "^5.5.0",
"@apollo/utils.withrequired": "^3.0.0",
"@as-integrations/azure-functions": "^0.2.0",
"@azure/functions": "catalog:",
"@graphql-tools/json-file-loader": "^8.0.20",
"@graphql-tools/load": "^8.1.2",
"@graphql-tools/load-files": "^7.0.1",
"@graphql-tools/merge": "^9.1.1",
"@graphql-tools/schema": "^10.0.25",
"@opentelemetry/api": "^1.9.0",
"@sthrift/application-services": "workspace:*",
"@sthrift/domain": "workspace:*",
"graphql": "^16.10.0",
"graphql-depth-limit": "^1.1.0",
"graphql-middleware": "^6.1.35",
"graphql-scalars": "^1.24.2",
"mongoose": "catalog:"
},
"devDependencies": {
"@cellix/arch-unit-tests": "workspace:*",
"@cellix/typescript-config": "workspace:*",
"@cellix/vitest-config": "workspace:*",
"@sthrift-verification/arch-unit-tests": "workspace:*",
"@types/graphql-depth-limit": "^1.1.6",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"license": "MIT"
}