-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.19 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "dynamodb-logs",
"version": "1.0.0",
"description": "dynamodb-logs",
"main": "index.js",
"keywords": [
"lambda",
"event-sourcing",
"eventbridge",
"eventbridge-archive",
"dynamodb",
"append only",
"serverless",
"aws",
"lambda"
],
"author": "James Kyburz <[email protected]>",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">= 14",
"npm": ">= 7"
},
"scripts": {
"postinstall": "husky install",
"prepare": "husky install",
"speakeasyjs": "./speakeasyjs/speakeasyjs.js"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@mhlabs/evb-cli": "1.1.31",
"aws-sdk": "2.891.0",
"boxen": "5.0.1",
"chalk": "4.1.1",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"date-prompt": "1.0.0",
"dynamodb-query-cli": "0.0.5",
"execa": "5.0.0",
"faker": "5.5.3",
"glob": "7.1.6",
"husky": "6.0.0",
"inquirer": "8.0.0",
"lint-staged": "10.5.4",
"npm-check-updates": "11.5.1",
"prettier": "2.2.1",
"prettier-standard": "16.4.1",
"serverless": "2.38.0",
"serverless-dynamodb-local": "0.2.39",
"serverless-iam-roles-per-function": "3.2.0-e97ab49",
"serverless-offline": "6.9.0",
"serverless-offline-aws-eventbridge": "1.5.2",
"serverless-offline-dynamodb-streams": "4.2.0",
"serverless-plugin-conditional-functions": "1.0.5",
"serverless-python-requirements": "5.1.1",
"sqlite3": "5.0.2",
"ws": "7.4.5"
},
"lint-staged": {
"*.md": "prettier --write",
"*.yml": "prettier --write",
"**/*.md": "prettier --write",
"**/*.js": "prettier-standard",
"**/*.yml": "prettier --write",
"**/*.py": "./formatters/python.sh",
"**/*.sh": "./formatters/sh.sh",
"*.sh": "./formatters/sh.sh"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesKyburz/dynamodb-logs.git"
},
"bugs": {
"url": "https://github.com/JamesKyburz/dynamodb-logs/issues"
},
"homepage": "https://github.com/JamesKyburz/dynamodb-logs#readme"
}