-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "typescript-template",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git@github.com:previewme/lambda-typescript.git"
},
"description": "Template for creating typescript lambda functions",
"main": "index.js",
"scripts": {
"build": "tsc",
"pretest": "eslint -f json -o reports/eslint-report.json --ignore-path .gitignore .",
"test": "jest"
},
"keywords": [],
"author": "PreviewMe Limited",
"license": "MIT",
"jestSonar": {
"reportPath": "reports"
},
"dependencies": {
"@types/aws-lambda": "8.10.92",
"aws-lambda": "1.0.7"
},
"devDependencies": {
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "26.0.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.4.7",
"jest-sonar-reporter": "2.0.0",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"typescript": "4.5.5"
}
}