forked from sutt0n/serverless-clamav-lambda-layer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.21 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
{
"name": "antivirus-lambda",
"dependencies": {
"aws-sdk": "^2.964.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.93",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-config-liebe": "^1.4.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-unicorn": "^40.1.0",
"jest": "^27.0.6",
"serverless-plugin-warmup": "^7.1.0",
"serverless-prune-plugin": "^2.0.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"scripts": {
"compile": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"lint": "eslint --cache 'src/**/*.{js,ts}'",
"lint:fix": "eslint --cache 'src/**/*.{js,ts}' --fix",
"test": "jest"
}
}