-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
51
52
53
54
{
"name": "lambda-product-api",
"version": "1.0.0",
"description": "Sample SAM Template for lambda-product-api",
"main": "app.js",
"repository": "https://github.com/iamtalwinder/lambda-product-api",
"author": "Talwinder Singh",
"license": "MIT",
"scripts": {
"unit": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint '*.ts' --quiet --fix",
"test": "npm run compile && npm run unit",
"compile": "tsc"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.496.0",
"@aws-sdk/lib-dynamodb": "^3.496.0",
"amazon-cognito-identity-js": "^6.3.7",
"aws-sdk": "^2.1545.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"esbuild": "^0.14.14",
"inversify": "^6.0.2",
"reflect-metadata": "^0.2.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-angular": "^18.6.0",
"@types/aws-lambda": "^8.10.92",
"@types/jest": "^29.2.0",
"@types/node": "^20.5.7",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^9.0.6",
"jest": "^29.2.1",
"lint-staged": "^15.2.0",
"prettier": "^2.5.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint '*.ts' --quiet --fix"
]
}
}