-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "lambda-http-router",
"version": "1.0.0",
"description": "Fully-Typed HTTP Router for AWS Lambda with Middy and Zod",
"main": "index.js",
"scripts": {
"test": "turbo run test",
"lint": "turbo run lint",
"dev": "turbo run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silviuglv/lambda-http-router.git"
},
"packageManager": "^npm@10.2.0",
"keywords": [
"aws",
"lambda",
"serverless",
"middy",
"zod",
"typescript",
"http",
"router"
],
"author": "Silviu Glavan <silviuglv@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/silviuglv/lambda-http-router/issues"
},
"homepage": "https://github.com/silviuglv/lambda-http-router#readme",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.908.0",
"@aws-sdk/lib-dynamodb": "^3.908.0",
"@dotenvx/dotenvx": "^1.51.0",
"@eslint/js": "^9.37.0",
"@types/aws-lambda": "^8.10.155",
"@types/node": "^24.7.1",
"aws-cdk-lib": "^2.219.0",
"aws-sdk-client-mock": "^4.1.0",
"constructs": "^10.4.2",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-turbo": "^2.5.8",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.4"
},
"workspaces": [
"api",
"packages/*"
]
}