-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.96 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.96 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "oracle-relayer",
"version": "1.0.0",
"description": "",
"license": "UNLICENSED",
"author": "Mento Labs <eng@mentolabs.xyz>",
"main": "dist/index.js",
"scripts": {
"aegis:export": "./bin/aegis-export.sh",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"cache:clear": "./bin/get-project-vars.sh --invalidate-cache",
"celo": "terraform -chdir=infra workspace select celo && npm run cache:clear",
"celo-sepolia": "terraform -chdir=infra workspace select celo-sepolia && npm run cache:clear",
"deploy:celo": "terraform -chdir=infra workspace select -or-create celo && terraform -chdir=infra apply",
"deploy:celo-sepolia": "terraform -chdir=infra workspace select -or-create celo-sepolia && terraform -chdir=infra apply",
"deploy:function:celo": "./bin/deploy-via-gcloud.sh celo",
"deploy:function:celo-sepolia": "./bin/deploy-via-gcloud.sh celo-sepolia",
"destroy:celo": "terraform -chdir=infra workspace select celo && terraform -chdir=infra destroy",
"destroy:celo-sepolia": "./bin/destroy-project.sh celo-sepolia",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'npm run build && npm run start'",
"gcp-build": "npm run build",
"generate:env": "terraform -chdir=infra apply -target=local_file.env_file -auto-approve",
"get:relayer:signer": "NODE_ENV=development npx ts-node ./src/get-relayer-signer.ts",
"logs": "./bin/get-function-logs.sh",
"logs:job": "./bin/get-job-logs.sh",
"logs:job:url": "./bin/get-job-logs-url.sh",
"logs:tail": "./bin/tail-function-logs.sh",
"logs:url": "./bin/get-function-logs-url.sh",
"plan:celo": "terraform -chdir=infra workspace select celo && terraform -chdir=infra plan",
"plan:celo-sepolia": "terraform -chdir=infra workspace select celo-sepolia && terraform -chdir=infra plan",
"refill:celo": "NODE_ENV=development npx ts-node ./src/refill-relayers.ts celo",
"refill:celo-sepolia": "NODE_ENV=development npx ts-node ./src/refill-relayers.ts celo-sepolia",
"prestart": "npm run build",
"start": "NODE_ENV=development functions-framework --target=relay",
"test": "npm run test:local",
"test:celo": "./bin/test-deployed-function.sh celo",
"test:celo-sepolia": "./bin/test-deployed-function.sh celo-sepolia",
"test:local": "./bin/test-local-function.sh",
"todo": "git ls-files -c --exclude-standard | grep -v \"package.json\" | xargs grep -n -i --color \"TODO:\\|FIXME:\" || true"
},
"dependencies": {
"@google-cloud/functions-framework": "^3.4.2",
"@google-cloud/logging-winston": "^6.0.0",
"@google-cloud/secret-manager": "^5.6.0",
"discord.js": "^14.16.1",
"env-schema": "^6.0.0",
"viem": "^2.37.5",
"winston": "^3.14.1"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@trunkio/launcher": "^1.3.1",
"@types/eslint__js": "^8.42.3",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"overrides": {
"form-data": "2.5.5"
}
}