-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.14 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
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
66
67
68
69
70
71
{
"name": "lambda-boilerplate-run-local",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start:dev": "serverless offline start",
"build": "tsc -p tsconfig.build.json",
"format:staged": "pretty-quick --staged",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src}/**/*.ts\" --fix",
"coverage": "nyc ava --concurrency 4",
"test": "TS_NODE_TRANSPILE_ONLY=1 ava",
"test:verbose": "TS_NODE_TRANSPILE_ONLY=1 ava --verbose",
"test:watch": "TS_NODE_TRANSPILE_ONLY=1 ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renatoassis01/lambda-boilerplate-run-local.git"
},
"keywords": [],
"author": "Renato Assis",
"license": "ISC",
"devDependencies": {
"@ava/typescript": "^3.0.0",
"@types/aws-lambda": "^8.10.85",
"@types/lambda-tester": "^3.6.1",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"ava": "^3.15.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"git-commit-msg-linter": "^3.0.0",
"lambda-tester": "^4.0.1",
"nyc": "^15.0.1",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"serverless-offline": "^8.2.0",
"serverless-plugin-typescript": "^2.1.0",
"sinon": "^12.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"ava": {
"cache": false,
"files": [
"!dist"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"pre-commit": "format:staged",
"pre-push": {
"silent": true,
"run": [
"test",
"build"
]
}
}