-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.71 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.71 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ts-lambda-kit",
"version": "1.0.4-beta",
"description": "aws lambda kit for making backend with NodeJS v18, TypeScript & SAM CLI",
"keywords": [
"ts-lambda-kit",
"CloudFormation",
"Amazon DynamoDB",
"Amazon API Gateway",
"Lambda Function",
"TypeScript",
"SAM CLI",
"AWS CLi v2",
"Node.js",
"REST API",
"Opinionated Architecture",
"Serverless Computing",
"AWS Lambda Backend",
"ts-lambda",
"ts-lambda-api",
"lambda",
"lambda-template",
"lambda-api"
],
"author": "Sazal Ahamed <sazal836@gmail.com> (https://sazal.vercel.app)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/DevSazal/ts-lambda-kit.git"
},
"bugs": {
"url": "https://github.com/DevSazal/ts-lambda-kit/issues"
},
"homepage": "https://github.com/DevSazal/ts-lambda-kit#readme",
"bin": {
"ts-lambda-kit": "bin/install.js"
},
"scripts": {
"unit": "jest",
"lint": "eslint '*.ts' --quiet --fix",
"compile": "tsc",
"test": "npm run compile && npm run unit"
},
"dependencies": {
"aws-sdk": "^2.799.0",
"esbuild": "^0.14.54"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.108",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"colors": "^1.4.0",
"esbuild-jest": "^0.5.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.2",
"jest": "^29.2.1",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"husky": {
"hooks": {
"pre-commit": "make lint"
}
}
}