forked from contco/tefi-gcloud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 3.11 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
{
"name": "tefi-gcloud-api",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"prepare": "husky install",
"build": "tsc --build",
"deploy-gateway": " gcloud functions deploy tefi-graphql --entry-point tefiGraphqlGateway --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-anc": "gcloud functions deploy anchor-graphql --entry-point anchorHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-core": "gcloud functions deploy terraCore-graphql --entry-point terraCoreHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-spectrum": "gcloud functions deploy spectrum-graphql --entry-point spectrumHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-apollo": "gcloud functions deploy apollo-graphql --entry-point apolloHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-pylon": "gcloud functions deploy pylon-graphql --entry-point pylonHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-terraworld": "gcloud functions deploy terraworld-graphql --entry-point terraworldHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-starterra": "gcloud functions deploy starterra-graphql --entry-point starterraHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-loterra": "gcloud functions deploy loterra-graphql --entry-point loterraHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-mirror": "gcloud functions deploy mirror-graphql --entry-point mirrorHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-altered": "gcloud functions deploy altered-graphql --entry-point alteredHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-tfloki": "gcloud functions deploy tfloki-graphql --entry-point tflokiHandler --runtime nodejs14 --trigger-http --allow-unauthenticated",
"deploy-nexus": "gcloud functions deploy nexus-graphql --entry-point nexusHandler --runtime nodejs14 --trigger-http --allow-unauthenticated"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@anchor-protocol/anchor.js": "^1.2.0",
"@apollo/federation": "^0.33.3",
"@apollo/gateway": "^0.42.3",
"@apollo/subgraph": "^0.1.2",
"@contco/terra-utilities": "0.0.8",
"apollo-server": "^3.4.0",
"apollo-server-cloud-functions": "^3.4.0",
"apollo-server-core": "^3.4.0",
"axios": "^0.23.0",
"big.js": "^6.1.1",
"bignumber.js": "^9.0.1",
"date-fns": "^2.25.0",
"fetch": "^1.1.0",
"graphql": "^15.6.1",
"graphql-request": "^3.6.1",
"numeral": "^2.0.6"
},
"devDependencies": {
"@types/big.js": "^6.1.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.4",
"prettier": "2.4.1",
"typescript": "^4.4.4"
}
}