-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.63 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
{
"name": "social-network-app",
"version": "1.0.0",
"description": "Social network application using STD",
"scripts": {
"dev": "serverless offline start --stage dev --region us-east-1",
"pkg": "serverless package --stage dev --region us-east-1",
"deploy": "serverless deploy --stage dev --region us-east-1",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest --ci --detectOpenHandles --config=jest.config.json",
"test:dev": "npm run lint --fix && npx jest --detectOpenHandles --config=jest.config.json --watch",
"prepare": "husky"
},
"engines": {
"node": "20.17.0"
},
"devDependencies": {
"@commitlint/cli": "19.2.0",
"@commitlint/config-conventional": "19.1.0",
"@commitlint/types": "19.0.3",
"@stylistic/eslint-plugin-ts": "1.7.0",
"@types/aws-lambda": "8.10.136",
"@types/jest": "29.5.12",
"@types/node": "20.11.28",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"dotenv": "16.4.5",
"esbuild": "0.20.1",
"eslint": "8.57.0",
"husky": "9.0.11",
"jest": "29.7.0",
"serverless": "3.38.0",
"serverless-prune-plugin": "2.0.2",
"serverless-esbuild": "1.51.0",
"serverless-offline": "13.3.3",
"ts-jest": "29.1.2",
"typescript": "5.4.2"
},
"dependencies": {
"@aws-lambda-powertools/logger": "2.8.0",
"@aws-lambda-powertools/parser": "^2.8.0",
"@aws-lambda-powertools/tracer": "^2.8.0",
"@aws-sdk/client-dynamodb": "^3.654.0",
"@aws-sdk/util-dynamodb": "^3.654.0",
"@smithy/node-http-handler": "^3.2.2",
"ulid": "^2.3.0",
"zod": "~3"
}
}