-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.08 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
{
"name": "node-froid-example",
"version": "1.0.0",
"description": "Example of Federated GQL Relay Object Identification implementation",
"scripts": {
"docs": "doctoc README.md",
"lint": "eslint '*/**/*.{js,ts}'",
"lint:errors": "yarn lint --quiet",
"lint:fix": "yarn lint --fix",
"prettier": "prettier src/**/* -l",
"prettier:fix": "yarn run prettier --write",
"generate:froid": "ts-node ./src/sample/generateSchema.ts",
"start": "concurrently \"yarn:start:*\"",
"start:listings": "ts-node ./src/sample/marketplace-listings/index.ts",
"start:reviews": "ts-node ./src/sample/reviews/index.ts",
"start:froid": "ts-node ./src/sample/froid/index.ts",
"start:gateway": "ts-node ./src/sample/gateway/index.ts",
"ts:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjfaga/node-froid-example.git"
},
"keywords": [
"gql",
"graphql",
"federation",
"federated",
"relay",
"api",
"global",
"object",
"identification",
"id",
"froid",
"node",
"nodejs",
"node-froid",
"example"
],
"author": "@mjfaga",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjfaga/node-froid-example/issues"
},
"homepage": "https://github.com/mjfaga/node-froid-example#readme",
"dependencies": {
"@apollo/gateway": "^2.1.3",
"@apollo/query-planner": "^2.1.3",
"@apollo/subgraph": "^2.1.3",
"@wayfair/node-froid": "^1.0.1",
"apollo-server": "^3.10.2",
"body-parser": "^1.20.0",
"concurrently": "^7.4.0",
"dataloader": "^2.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"doctoc": "^2.2.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}