-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.85 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
{
"name": "log2sentry",
"version": "0.3.2",
"description": "Lambda for logging an Exception to Sentry",
"main": "index.js",
"scripts": {
"setup": "ts-node ./config.ts",
"build": "rm -Rf dist && tsc",
"package": "sam package --s3-bucket mybucket --profile myprofile --output-template-file packaged.yaml",
"predeploy": "rm -Rf .aws-sam && yarn build && rm -Rf dist/maps && sam build && yarn package",
"deploy": "yarn predeploy && bash deploy.sh",
"generate-event": "sam local generate-event apigateway aws-proxy",
"prestart": "yarn build && cd dist && yarn",
"start": "sam local start-api --debug-port 5858",
"invoke": "sam local invoke -e events/event.json",
"debug": "yarn build && sam local invoke -e events/event.json --debug-port 5858",
"validate": "sam validate",
"lint": "eslint . --ext .ts",
"release": "release-it",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathas/log2sentry.git"
},
"keywords": [
"log2sentry",
"sentry",
"lambda",
"aws"
],
"author": "Jon Ribeiro <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/aws-lambda": "^8.10.46",
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.1",
"@types/inquirer": "^7.3.1",
"@types/node": "^16.11.7",
"@types/pino": "^6.3.12",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"auto-changelog": "^1.16.3",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"eslint": "^8.9.0",
"eslint-plugin-security": "^1.4.0",
"figlet": "^1.5.0",
"husky": "^8.0.3",
"inquirer": "^7.3.3",
"js-yaml": "3.13.1",
"release-it": "^15.6.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
}
}