-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 910 Bytes
/
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
{
"name": "aws-lambda-template",
"version": "0.1.0",
"main": "index.js",
"repository": "[email protected]:cjww-development/aws-lambda-template.git",
"author": "chrisjwwalker <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@eslint/create-config": "^0.3.1",
"@types/aws-lambda": "^8.10.102",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"aws-sdk": "^2.1194.0",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"test": "jest --verbose --coverage --silent",
"compile": "tsc",
"prepare": "husky install",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
}
}