-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "czi-graphql-federation",
"version": "2.35.1",
"description": "",
"scripts": {
"start": "mesh start",
"build": "mesh build",
"dev": "nodemon",
"test": "mesh build && jest --detectOpenHandles"
},
"nodemonConfig": {
"exec": "mesh dev",
"ext": "cjs, json, ts",
"watch": [
".meshrc.yaml",
"**/*.ts"
],
"ignore": [
"**/tests/**",
".mesh/**"
],
"delay": 250
},
"repository": {
"type": "git",
"url": "git+https://github.com/chanzuckerberg/graphql-federation-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chanzuckerberg/graphql-federation-server/issues"
},
"homepage": "https://github.com/chanzuckerberg/graphql-federation-server#readme",
"dependencies": {
"@graphql-mesh/cli": "^0.89.9",
"@graphql-mesh/graphql": "^0.97.0",
"@graphql-mesh/json-schema": "^0.99.0",
"@graphql-mesh/transform-encapsulate": "^0.97.0",
"@graphql-mesh/transform-prefix": "^0.97.0",
"@graphql-mesh/transform-rename": "^0.97.0",
"@graphql-mesh/transform-transfer-schema": "^0.97.0",
"@graphql-yoga/plugin-csrf-prevention": "^3.1.1",
"graphql": "^16.8.1",
"nodemon": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1"
},
"overrides": {}
}