-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.74 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
{
"name": "merloc-gatekeeper",
"version": "0.0.0",
"description": "MerLoc universal (runtime agnostic) GateKeeper component implementation based on AWS Lambda extension",
"author": "Serkan Özal <serkan@thundra.io> (https://github.com/serkan-ozal)",
"homepage": "https://github.com/thundra-io/merloc-gatekeeper-aws-lambda-extension",
"repository": "thundra-io/merloc-gatekeeper-aws-lambda-extension",
"license": "Apache License 2",
"main": "src/index.ts",
"keywords": [
"serverless",
"aws",
"aws-lambda",
"debugging",
"hot-reload",
"merloc"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-check": "prettier --config .prettierrc.json --check ./src/*.ts ./src/**/*.ts",
"lint-format": "prettier --config .prettierrc.json --write ./src/*.ts ./src/**/*.ts"
},
"files": [
"src/",
"package.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/aws-lambda": "^8.10.84",
"@types/node": "^14.11.8",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/express": "^4.17.14",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"express": "^4.18.1",
"uuid": "^9.0.0",
"ws": "^8.9.0"
}
}