-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 3.73 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
61
62
{
"name": "communion-api-wallet-abstraction",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint src/",
"build": "tsc",
"test": "LOG_LEVEL=verbose jest",
"test:watch": "LOG_LEVEL=verbose jest --watch",
"prepare": "husky install",
"deploy:dev": "sls deploy --stage dev --aws-profile communion --verbose --aws-s3-accelerate",
"deploy:prod": "sls deploy --stage prod --aws-profile communion --verbose --aws-s3-accelerate",
"deploy-ci:dev": "sls deploy --stage dev --verbose --aws-s3-accelerate",
"deploy-ci:prod": "sls deploy --stage prod --verbose --aws-s3-accelerate",
"invoke:getSelf": "NODE_ENV=local serverless invoke local --function getSelf --stage dev --path ./invokeLocalEvents/getSelfEvent.json -e LOG_LEVEL=verbose",
"invoke:getSelfTxs": "NODE_ENV=local serverless invoke local --function getSelfTxs --stage dev --path ./invokeLocalEvents/getSelfTxs.json -e LOG_LEVEL=verbose",
"invoke:getOrgById": "NODE_ENV=local serverless invoke local --function getOrgById --stage dev --path ./invokeLocalEvents/getOrgById.json -e LOG_LEVEL=verbose",
"invoke:getOrgTxsSelf": "NODE_ENV=local serverless invoke local --function getOrgTxsSelf --stage dev --path ./invokeLocalEvents/getOrgTxsSelf.json -e LOG_LEVEL=verbose",
"invoke:postOrgRedeemSelf": "NODE_ENV=local serverless invoke local --function postOrgRedeemSelf --stage dev --path ./invokeLocalEvents/postOrgRedeemSelf.json -e LOG_LEVEL=verbose",
"invoke:postConfirmationCreateUserWallet": "NODE_ENV=local serverless invoke local --function postConfirmationCreateUserWallet --stage dev --path ./invokeLocalEvents/postConfirmationCognitoEvent.json -e LOG_LEVEL=verbose",
"invoke:preSignupCreateUserWallet": "NODE_ENV=local serverless invoke local --function postConfirmationCreateUserWallet --stage dev --path ./invokeLocalEvents/preSignupCognitoEvent.json -e LOG_LEVEL=verbose",
"invoke:postSeedSelf": "NODE_ENV=local serverless invoke local --function postSeedSelf --stage dev --path ./invokeLocalEvents/postSeedSelf.json -e LOG_LEVEL=verbose",
"invoke:postSelfTransfer": "NODE_ENV=local serverless invoke local --function postSelfTransfer --stage dev --path ./invokeLocalEvents/postSelfTransfer.json -e LOG_LEVEL=verbose",
"invoke:postSelfMultisend": "NODE_ENV=local serverless invoke local --function postSelfMultisend --stage dev --path ./invokeLocalEvents/postSelfMultisend.json -e LOG_LEVEL=verbose",
"invoke:postJoinOrgById": "NODE_ENV=local serverless invoke local --function postJoinOrgById --stage dev --path ./invokeLocalEvents/postJoinOrgById.json -e LOG_LEVEL=verbose",
"invoke:postOrgMintNft": "NODE_ENV=local serverless invoke local --function postOrgMintNft --stage dev --path ./invokeLocalEvents/postOrgMintNft.json -e LOG_LEVEL=verbose"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.163.0",
"@aws-sdk/client-lambda": "^3.169.0",
"@aws-sdk/client-s3": "^3.171.0",
"@aws-sdk/lib-dynamodb": "^3.172.0",
"avalanche": "^3.15.3",
"aws-lambda": "^1.0.7",
"axios": "^0.27.2",
"ethers": "^5.7.1",
"lambda-log": "^3.1.0",
"nanoid": "^4.0.0",
"nft.storage": "^7.0.0",
"twilio": "^3.80.1",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.101",
"@types/jest": "^28.1.7",
"@types/node": "18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"serverless": "^3.21.0",
"serverless-bundle": "^5.5.0",
"serverless-prune-plugin": "^2.0.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "4.8.3"
}
}