-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "graphql-gateway",
"license": "MIT",
"main": "dist/gateway.js",
"author": "mpgxc",
"scripts": {
"prebuild": "rimraf dist",
"dev": "nodemon --exec tsx --env-file .env src/gateway.ts",
"start": "node dist/gateway.js",
"build": "tsup src/*.ts --out-dir dist",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@apollo/server": "^4.10.4",
"@graphql-tools/executor-http": "^1.0.9",
"@graphql-tools/stitch": "^9.2.7",
"@graphql-tools/wrap": "^10.0.5",
"@graphql-tools/utils": "^10.2.0",
"graphql": "^16.8.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/cors": "2.8.17",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"tsx": "^4.8.2",
"typescript": "^5.4.5"
}
}