-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
28 lines (28 loc) · 1.04 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
{
"name": "hive-platform-demo",
"version": "1.0.0",
"private": true,
"workspaces": [
"subgraphs",
"subgraphs/*",
"gateway"
],
"scripts": {
"generate-users-subgraph-cert": "openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes -keyout ./subgraphs/users/key.pem -out ./subgraphs/users/cert.pem -subj \"/CN=users_subgraph\" -addext \"subjectAltName=DNS:users_subgraph,DNS:localhost,IP:172.17.0.1,DNS:host.docker.internal\" && cp ./subgraphs/users/cert.pem ./gateway/users_cert.pem",
"start": "set -e && docker compose up -d --build --force-recreate --remove-orphans"
},
"resolutions": {
"graphql": "16.9.0"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"tslib": "^2.8.1",
"prom-client": "^15.1.3",
"@whatwg-node/fetch": "^0.10.1",
"@whatwg-node/server": "^0.9.65",
"@types/ioredis-mock": "^8.2.5"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}