-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.95 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
{
"name": "serverless-aws-middleware",
"description": "provide the interface of lambda's handler to request => response and prepared AWS infra object",
"version": "0.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Lukas.J.Han",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:lukasjhan/serverless-aws-middleware.git"
},
"keywords": [
"serverless",
"middleware",
"lambda",
"aws",
"api-gateway"
],
"bugs": {
"url": "https://github.com/lukasjhan/serverless-aws-middleware/issues"
},
"homepage": "https://github.com/lukasjhan/serverless-aws-middleware",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc --project tsconfig.json",
"build:watch": "tsc --project tsconfig.json --watch",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watch",
"deploy": "yarn build && yarn publish",
"publish": "npm publish --access public"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.328.0",
"@aws-sdk/client-s3": "^3.328.0",
"@aws-sdk/client-sqs": "^3.328.0",
"@aws-sdk/cloudfront-signer": "^3.316.0",
"@aws-sdk/lib-dynamodb": "^3.328.0",
"@aws-sdk/s3-request-presigner": "^3.328.0",
"@types/aws-lambda": "^8.10.115",
"@types/mysql": "^2.15.5",
"axios": "^1.4.0",
"mongoose": "^7.1.0",
"mysql": "^2.16.0",
"p-limit": "^2.0.0",
"redis": "^4.6.6",
"reflect-metadata": "^0.1.13",
"ts-enum-util": "^4.0.2",
"typeorm": "^0.3.15",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^18.0.0",
"@types/uuid": "^9.0.0",
"babel-core": "6.26.0",
"babel-jest": "^23.4.2",
"cross-env": "^7.0.3",
"jest": "^23.4.2",
"prettier": "^1.11.1",
"ts-jest": "^23.1.3"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all"
}
}