This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.24 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@ausgaben/aws-backend",
"version": "1.0.0",
"description": "5th iteration of the Ausgaben backend, with an ES/CQRS architecture, built using AWS serverless components",
"scripts": {
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ausgaben/aws-backend.git"
},
"keywords": [
"personal spendings tracker",
"aws",
"serverless",
"es/cqrs"
],
"author": "Markus Tacker <[email protected]> | https://coderbyheart.com/",
"license": "MIT",
"bugs": {
"url": "https://github.com/ausgaben/aws-backend/issues"
},
"homepage": "https://github.com/ausgaben/aws-backend#readme",
"devDependencies": {
"@aws-cdk/aws-appsync": "1.107.0",
"@aws-cdk/aws-cognito": "1.107.0",
"@aws-cdk/aws-dynamodb": "1.107.0",
"@aws-cdk/aws-iam": "1.107.0",
"@aws-cdk/core": "1.107.0",
"@aws-sdk/client-cloudformation": "3.17.0",
"@nordicsemiconductor/asset-tracker-cloud-code-style": "9.0.4",
"@nordicsemiconductor/eslint-config-asset-tracker-cloud-typescript": "7.0.23",
"@nordicsemiconductor/package-layered-lambdas": "7.4.21",
"@types/aws-lambda": "8.10.76",
"@types/jest": "26.0.23",
"@types/node": "14.17.2",
"@types/uuid": "8.3.0",
"aws-cdk": "1.107.0",
"eslint": "7.27.0",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"ts-jest": "26.5.6",
"ts-loader": "9.2.2",
"typescript": "4.3.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts"
],
"*.{md,json,yaml,yml,js}": [
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3.17.0",
"@aws-sdk/client-ssm": "3.17.0",
"fp-ts": "2.10.5",
"io-ts": "2.2.16",
"uuid": "8.3.2"
},
"jest": {
"testURL": "http://localhost",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".+\\.spec\\.ts$",
"coverageReporters": [
"html",
"lcov"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}