-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 2.65 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "functions-framework --target=index",
"prestart": "npm run build",
"test-windows": "SET SERVER_ENV=test&& jest",
"test": "SERVER_ENV=test jest",
"gcp-build": "npm run build",
"deploy-query-recipients": "gcloud functions deploy query-recipients --env-vars-file .env.prod.yml --gen2 --runtime=nodejs16 --region=us-central1 --trigger-http --allow-unauthenticated",
"deploy-save-member": "gcloud functions deploy save-member --env-vars-file .env.prod.yml --gen2 --runtime=nodejs16 --region=us-central1 --trigger-http --allow-unauthenticated",
"deploy-deposit": "gcloud functions deploy deposit --env-vars-file .env.prod.yml --gen2 --runtime=nodejs16 --region=us-central1 --trigger-http --allow-unauthenticated",
"deploy-recent-activity": "gcloud functions deploy recent-activity --env-vars-file .env.prod.yml --gen2 --runtime=nodejs16 --region=us-central1 --trigger-http --allow-unauthenticated",
"deploy-send": "gcloud functions deploy send --env-vars-file .env.prod.yml --gen2 --runtime=nodejs16 --region=us-central1 --trigger-http --allow-unauthenticated",
"deploy-withdraw": "gcloud functions deploy withdraw --env-vars-file .env.prod.yml --gen2 --runtime=nodejs16 --region=us-central1 --trigger-http --allow-unauthenticated",
"deploy-account": "gcloud functions deploy account --env-vars-file .env.prod.yml --gen2 --runtime=nodejs16 --region=us-central1 --trigger-http --allow-unauthenticated",
"deploy-payment-methods": "gcloud functions deploy payment-methods --env-vars-file .env.prod.yml --gen2 --runtime=nodejs16 --region=us-central1 --trigger-http --allow-unauthenticated",
"deploy-all": "npm run deploy-query-recipients && npm run deploy-save-member && npm run deploy-deposit && npm run deploy-recent-activity && npm run deploy-send && npm run deploy-withdraw && npm run deploy-account && npm run deploy-payment-methods"
},
"keywords": [],
"author": "austin.w.milt@gmail.com",
"dependencies": {
"@circle-fin/circle-sdk": "^1.3.0",
"@google-cloud/functions-framework": "^3.1.3",
"@openpgp/web-stream-tools": "^0.0.13",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.3.7",
"firebase-admin": "^11.5.0",
"openpgp": "^5.7.0",
"uuid": "^9.0.0",
"yamlenv": "^1.0.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.4.0",
"@types/node-fetch": "^2.6.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"babel-jest": "^29.4.3",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}