-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 979 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
35
{
"name": "products-graphql-subgraph",
"version": "1.0.0",
"description": "Products Domain Graph Service. It's part of Edge GraphQL.",
"main": "src/index.ts",
"repository": "[email protected]:augustoscher/products-graphql-subgraph.git",
"author": "Augusto S. Scher <[email protected]>",
"engines": {
"node": ">= 16"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon",
"lint": "eslint --ext .js,.ts ."
},
"private": false,
"dependencies": {
"@apollo/subgraph": "^2.1.0",
"apollo-server": "^3.10.2",
"graphql": "^16.6.0",
"nodemon": "^2.0.19",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.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.3"
}
}