-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.53 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.53 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
{
"name": "ssambee-guard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build:monitor": "esbuild functions/central-monitor/index.ts --bundle --minify --platform=node --target=node22 --outfile=functions/central-monitor/dist/index.js",
"build:kakao": "esbuild functions/kakao-notification/index.ts --bundle --minify --platform=node --target=node22 --outfile=functions/kakao-notification/dist/index.js",
"build:logcleanup": "esbuild functions/log-cleanup/index.ts --bundle --minify --platform=node --target=node22 --outfile=functions/log-cleanup/dist/index.js",
"build": "pnpm run build:monitor && pnpm run build:kakao && pnpm run build:dashboard && pnpm run build:logcleanup",
"build:dashboard": "esbuild functions/monitoring-dashboard/src/index.ts --bundle --minify --platform=node --target=node22 --outfile=functions/monitoring-dashboard/dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.0",
"dependencies": {
"@aws-sdk/client-ssm": "^3.990.0",
"@libsql/linux-x64-gnu": "^0.5.22",
"axios": "^1.13.4"
},
"devDependencies": {
"@libsql/client": "^0.17.0",
"@types/aws-lambda": "^8.10.160",
"@types/bcryptjs": "^3.0.0",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.2.3",
"bcryptjs": "^3.0.3",
"esbuild": "^0.27.3",
"jest": "^30.2.0",
"jsonwebtoken": "^9.0.3",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"zod": "^4.3.6"
}
}