-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.1 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
63
64
65
{
"name": "backend",
"version": "1.0.0",
"description": "Meet andromeda backend orchestrates different apps and functions",
"main": "index.js",
"scripts": {
"lint": "eslint './**/*.{js,ts}'",
"build": "tsc --build",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "STAGE=dev sls deploy --stage dev",
"remove": "STAGE=dev sls remove --stage dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@serverless/compose": "^1.3.0",
"@serverless/typescript": "^3.38.0",
"@types/aws-lambda": "^8.10.143",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"esbuild": "^0.17.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"json-schema-to-ts": "^1.5.0",
"serverless": "^3.38.0",
"serverless-api-gateway-caching": "^1.10.3",
"serverless-disable-functions": "^1.0.0",
"serverless-domain-manager": "^7.3.8",
"serverless-esbuild": "1.46.0",
"serverless-offline": "^13.3.2",
"serverless-prune-plugin": "^2.0.2",
"ts-loader": "^8.0.15",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.637.0",
"@aws-sdk/client-ssm": "^3.637.0",
"@circle-fin/developer-controlled-wallets": "^4.2.1",
"@ethersproject/contracts": "^5.4.0",
"@ethersproject/providers": "^5.5.1",
"@middy/core": "^5.4.6",
"@middy/do-not-wait-for-empty-event-loop": "^5.4.6",
"@middy/http-cors": "^5.4.6",
"@middy/http-error-handler": "^5.4.6",
"@middy/http-response-serializer": "^5.4.6",
"@middy/ssm": "^5.4.6",
"@types/lodash": "^4.17.7",
"aws-lambda": "^1.0.7",
"aws4": "^1.13.1",
"axios": "^1.7.5",
"bignumber.js": "^9.1.2",
"ethers": "^5.6.9",
"http-errors": "^2.0.0",
"http-status-codes": "^2.3.0",
"mongoose": "^8.5.4",
"node-forge": "^1.3.1",
"pino": "^9.3.2"
}
}