-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 KB
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
{
"name": "dynamodb-tutorials",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test:live": "ts-node --project tsconfig.json test/live-test.ts",
"truncate:live": "ts-node --project tsconfig.json test/live-truncate-table.ts",
"scan:live": "aws dynamodb scan --table-name demo-table --no-cli-pager",
"test": "IS_OFFLINE=true jest --coverage",
"type-check": "tsc --noEmit",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write '**/*.{js,ts,json,md}'",
"deploy": "serverless deploy --stage prod"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/aws-lambda": "^8.10.120",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@types/ramda": "^0.29.3",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"dockerode": "^3.3.5",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"serverless": "^3.34.0",
"serverless-plugin-typescript": "^2.1.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.408.0",
"@aws-sdk/client-sns": "^3.414.0",
"@aws-sdk/client-sqs": "^3.421.0",
"@aws-sdk/client-ssm": "^3.414.0",
"algoliasearch": "^4.20.0",
"aws-lambda": "^1.0.7",
"ramda": "^0.29.0",
"uuid": "^9.0.0"
}
}