-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 943 Bytes
/
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
{
"name": "edge-graphql",
"version": "1.0.0",
"description": "One Graph Service with graphql federation example",
"main": "src/index.ts",
"repository": "[email protected]:augustoscher/edge-graphql.git",
"author": "Augusto S. Scher <[email protected]>",
"engines": {
"node": ">= 16"
},
"scripts": {
"start": "node src/index.ts",
"dev": "nodemon",
"lint": "eslint --ext .js,.ts ."
},
"dependencies": {
"@apollo/gateway": "^2.0.5",
"@apollo/server": "^4.0.0-alpha.7",
"graphql": "^16.6.0",
"nodemon": "^2.0.19"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}