-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "hde",
"version": "0.1.0",
"description": "Events in DynamoDB.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"test": "npx jest",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"coverage": "npx jest --collect-coverage",
"dynamodb": "docker run --rm -p 8000:8000 -v $(pwd)/dbstore:/dbstore amazon/dynamodb-local -jar DynamoDBLocal.jar -sharedDb -dbPath /dbstore"
},
"keywords": [
"dynamodb",
"events"
],
"author": "a-h",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.128.0",
"@aws-sdk/lib-dynamodb": "^3.128.0",
"aws-lambda": "^1.0.7"
},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/aws-lambda": "^8.10.101",
"@types/jest": "^26.0.8",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.7.4"
}
}