-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.76 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.76 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "backend",
"version": "2.2.3",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"build": "$npm_execpath run clean && $npm_execpath run build:src && $npm_execpath run build:openapi",
"build:src": "NODE_ENV=production node esbuild.js",
"build:openapi": "redocly bundle openapi/spec.yaml --output dist/spec.rendered.yaml",
"dev-build": "$npm_execpath run clean && node esbuild.js",
"dev": "pm2 start --no-daemon ecosystem.dev.config.cjs",
"package": "bin/package.sh",
"lint": "$npm_execpath run lint:openapi && $npm_execpath run lint:src",
"lint:src": "eslint -c ./eslint.config.js",
"lint:openapi": "$npm_execpath run build:openapi && spectral lint dist/spec.rendered.yaml",
"lint:fix": "$npm_execpath run lint -- --fix",
"prettier": "prettier . --check",
"prettier:fix": "$npm_execpath run prettier -- --write",
"check": "$npm_execpath run types && $npm_execpath run lint && $npm_execpath run prettier && $npm_execpath run test && echo 'Everything ready to go upstream' || echo 'CAUTION: Have another look'",
"types": "tsc",
"test": "vitest --watch=false",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"checkCircularDeps": "madge --ts-config tsconfig.json --extensions ts --circular ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-lambda-powertools/batch": "^2.24.1",
"@aws-lambda-powertools/idempotency": "^2.24.1",
"@aws-lambda-powertools/logger": "^2.24.1",
"@aws-lambda-powertools/metrics": "^2.24.1",
"@aws-lambda-powertools/parameters": "^2.24.1",
"@aws-lambda-powertools/parser": "^2.24.1",
"@aws-lambda-powertools/tracer": "^2.24.1",
"@aws-sdk/client-dynamodb": "^3.751.0",
"@aws-sdk/client-sns": "^3.750.0",
"@aws-sdk/client-sqs": "^3.750.0",
"@aws-sdk/client-ssm": "^3.750.0",
"@aws-sdk/lib-dynamodb": "^3.751.0",
"@middy/core": "^7.0.0",
"@middy/http-cors": "^7.0.0",
"@notifycal/shared": "7.16.2",
"@vonage/server-sdk": "^3.20.0",
"axios": "^1.8.4",
"env-var": "^7.5.0",
"form-data": "^4.0.2",
"google-auth-library": "^10.1.0",
"googleapis": "^171.0.0",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"juice": "^11.0.1",
"libphonenumber-js": "^1.12.6",
"luxon": "^3.5.0",
"qs": "^6.14.0",
"radashi": "^12.6.0",
"sms-length": "^0.2.2",
"stripe": "^20.0.0",
"ts-pattern": "^5.6.2",
"uuid": "^13.0.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@aws-sdk/types": "^3.723.0",
"@aws/lambda-invoke-store": "^0.2.1",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^10.0.0",
"@jsx-email/doiuse-email": "^1.0.4",
"@redocly/cli": "^2.0.0",
"@stoplight/spectral-cli": "^6.14.2",
"@types/aws-lambda": "^8.10.147",
"@types/http-errors": "^2.0.4",
"@types/jsonwebtoken": "^9.0.8",
"@types/luxon": "^3.4.2",
"@types/node": "^24.0.0",
"@types/qs": "^6.9.18",
"@typescript-eslint/parser": "^8.20.0",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/eslint-plugin": "^1.1.31",
"@vitest/ui": "^4.0.0",
"body-parser": "^2.2.0",
"connect-timeout": "^1.9.0",
"dotenv": "^17.0.0",
"esbuild": "^0.27.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^63.0.0",
"express": "^5.0.0",
"glob": "^13.0.0",
"globals": "^17.0.0",
"madge": "^8.0.0",
"pm2": "^6.0.0",
"prettier": "^3.5.1",
"spectral-aws-apigateway-ruleset": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^7.0.0",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "^4.0.0",
"yaml": "^2.8.0"
}
}