-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.43 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
{
"name": "apigw-dynamodb-connector",
"version": "0.0.1",
"description": "Yandex Function for integration API Gateway with DynamoDB API-compatible databases",
"scripts": {
"build": "webpack --config webpack.ts",
"package": "zip -j build/apigw-dynamodb-connector-0.0.1.zip build/apigw-dynamodb-connector.js"
},
"author": "Yandex Cloud",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.92.0",
"@aws-sdk/util-dynamodb": "^3.92.0",
"@aws-sdk/protocol-http": "^3.78.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.0",
"@types/node-fetch": "^2.5.12",
"axios": "^0.21.1",
"concurrently": "^6.2.2",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"jest": "^27.2.3",
"nodemon": "^2.0.13",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"tslint": "^5.12.1",
"typescript": "^4.4.4",
"wait-on": "^3.2.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prefer-arrow-functions": "^3.0.1",
"eslint-plugin-unicorn": "^37.0.1"
}
}