-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "serverless-app",
"version": "1.0.0",
"author": "Ezequiel Calonge <ezeecalonge@gmail.com>",
"description": "Serverless scalable app template.",
"main": "serverless.ts",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"lint": "biome lint --write",
"check:write": "biome check --write",
"check": "biome check"
},
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.788.0",
"@aws-sdk/client-eventbridge": "^3.787.0",
"jsonwebtoken": "^9.0.2",
"undici": "^7.8.0",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@serverless/typescript": "^4.11.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/aws-lambda": "^8.10.149",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.14.1",
"aws-sdk-client-mock": "^4.1.0",
"cdk-iam-floyd": "^0.694.0",
"jest": "^29.7.0",
"serverless": "^4.12.0",
"serverless-domain-manager": "^8.0.0",
"serverless-esbuild": "^1.55.0",
"serverless-prune-plugin": "^2.1.0",
"ts-jest": "^29.3.2",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}