-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
{
"name": "dynamo-easy-demo",
"version": "5.0.0",
"description": "simple project as showcase for dynamo-easy",
"license": "MIT",
"keywords": [
"node",
"@shiftcoders/dynamo-easy",
"shiftcode",
"dynamo-easy",
"aws",
"dynamo",
"dynamoDB",
"demo"
],
"type": "module",
"main": "./dist/index.js",
"engines": {
"node": "^20.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/shiftcode/dynamo-easy-demo"
},
"scripts": {
"lint": "tslint -t codeFrame '{src, test}/**/*.ts' --project ./tsconfig.json --fix",
"build": "tsc",
"start": "node --loader ts-node/esm --experimental-json-modules ./src/index.ts",
"init-data": "node --loader ts-node/esm --experimental-json-modules ./src/write-data.ts",
"prepare": "husky",
"deploy": "npm run build && cdk deploy && npm run generate-outputs",
"generate-outputs": "aws cloudformation --region eu-central-1 describe-stacks --stack-name dynamo-easy-demo-LAB --query 'Stacks[0].Outputs' > src/cf-outputs.json",
"iac": "ts-node src/app.ts",
"synth": "npm run build && cdk synth --app ./dist/app.js"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.556.0",
"@shiftcoders/dynamo-easy": "8.0.0-next.3",
"date-fns": "^3.6.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"cdk": "^2.138.0",
"aws-cdk-lib": "^2.138.0",
"constructs": "^10.3.0",
"@types/node": "^20.11.1",
"prettier": "^3.2.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"ts-node": "^11.0.0-beta.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.4.5"
}
}