-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.22 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
{
"name": "modern-node-serverless-app",
"version": "1.0.0",
"description": "Modern Node Serverless App",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"author": "alessandrofoglia07",
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.564.0",
"@aws-sdk/client-dynamodb": "^3.529.1",
"@aws-sdk/lib-dynamodb": "^3.529.1",
"@types/aws-lambda": "^8.10.137",
"@types/eslint": "^8.44.2",
"@types/node": "^20.6.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"aws-lambda": "^1.0.7",
"esbuild": "^0.20.2",
"eslint": "^8.49.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-esbuild": "^1.52.1",
"serverless-iam-roles-per-function": "^3.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"aws-jwt-verify": "^4.0.1",
"uuid": "^9.0.1",
"zod": "^3.23.4"
}
}