This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.59 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
{
"name": "replaced-by-user-input",
"description": "replaced-by-user-input",
"version": "0.0.1",
"private": true,
"files": [
"dist/**/*.js"
],
"scripts": {
"test": "jest --passWithNoTests",
"test:cov": "jest --passWithNoTests --coverage",
"prepack": "npm run build",
"prebuild": "rimraf dist",
"build": "tsc",
"prepare": "husky install || exit 0",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint 'src/**/*.ts'",
"lint:json": "eslint 'src/**/*.ts' -f json -o eslint-report.json"
},
"dependencies": {
"@aws-sdk/util-arn-parser": "3.568.0",
"date-fns": "3.6.0",
"lambda-log": "3.1.0",
"ms-teams-webhook": "2.1.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@tsconfig/node20": "20.1.4",
"@types/aws-lambda": "8.10.141",
"@types/jest": "29.5.12",
"@types/lambda-log": "3.0.3",
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"esbuild": "0.23.0",
"husky": "9.1.0",
"is-ci": "3.0.1",
"jest": "29.7.0",
"jest-sonar": "0.2.16",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"pretty-quick": "4.0.0",
"rimraf": "5.0.9",
"ts-jest": "29.2.2",
"typescript": "5.5.3"
},
"lint-staged": {
"*.ts": "eslint"
}
}