-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "serverless-boilerplate",
"version": "0.1.0",
"description": "",
"author": "",
"license": "ISC",
"main": "handler.js",
"scripts": {
"dev": "serverless offline start --skipCacheInvalidation",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --no-cache",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "yarn lint --fix",
"prettier": "yarn prettier:check",
"prettier:check": "prettier --list-different \"**/*.ts\"",
"prettier:write": "prettier --write \"**/*.ts\""
},
"dependencies": {
"aws-lambda": "^1.0.5",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.50",
"@types/jest": "^25.2.1",
"@types/lodash": "4.14.91",
"@types/node": "^11.13.0",
"aws-lambda-mock-context": "^3.2.1",
"husky": "^4.2.5",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"serverless": "^1.67.3",
"serverless-offline": "^6.1.4",
"serverless-plugin-typescript": "1.1.7",
"ts-jest": "^25.4.0",
"tslint": "^6.1.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0"
},
"engines": {
"node": ">=12.16.1",
"npm": ">=6.13.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
}
},
"prettier": {
"parser": "typescript",
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn prettier:write"
}
}
}