-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.02 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": "service-boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "",
"type-check": "./node_modules/.bin/tsc --noEmit && yarn lint",
"lint": "./node_modules/.bin/eslint 'src/**' --ext .ts,.tsx --max-warnings 0",
"predeploy": "yarn lint",
"deploy": "sls deploy -v"
},
"husky": {
"hooks": {
"pre-commit": "yarn type-check"
}
},
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/node": "^12.12.24",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"better-lambda-types": "^0.0.4",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"serverless-deployment-bucket": "^1.1.2",
"serverless-dotenv-plugin": "^2.4.2",
"serverless-plugin-typescript": "^1.1.9",
"typescript": "^3.9.2"
},
"dependencies": {
"aws-sdk": "^2.677.0",
"axios": "0.19.0",
"lambda-hooks": "^0.2.0"
}
}