-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.39 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.39 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
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
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@trunkrs/common",
"version": "3.0.0",
"description": "Common standards library for development in Trunkrs",
"types": "./index.d.ts",
"repository": "https://github.com/Trunkrs/common.git",
"author": "Leonard Breitkopf <leonard@trunkrs.nl>",
"license": "MIT",
"dependencies": {
"aws4-axios": "^2.4.9",
"axios": "^0.21.4",
"date-fns": "^2.25.0",
"deepmerge": "^4.2.2",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.9.5",
"qs": "^6.10.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.421.0",
"@aws-sdk/client-eventbridge": "^3.421.0",
"@aws-sdk/client-kinesis": "^3.421.0",
"@aws-sdk/client-lambda": "^3.421.0",
"@aws-sdk/client-s3": "^3.421.0",
"@aws-sdk/client-secrets-manager": "^3.423.0",
"@aws-sdk/client-ses": "^3.421.0",
"@aws-sdk/client-sfn": "^3.423.0",
"@aws-sdk/client-sns": "^3.421.0",
"@aws-sdk/client-sqs": "^3.421.0",
"@aws-sdk/client-ssm": "^3.421.0",
"@aws-sdk/lib-dynamodb": "^3.421.0",
"@aws-sdk/util-dynamodb": "^3.421.0",
"@types/aws-lambda": "^8.10.122",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.1",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^14.11.2",
"@types/nodemailer": "^6.4.11",
"@types/qs": "^6.9.7",
"@types/typescript": "^2.0.0",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"aws-lambda": "^1.0.6",
"aws-sdk-client-mock": "^3.0.0",
"concurrently": "^6.2.1",
"eslint": "^7.10.0",
"eslint-config-airbnb-base-typescript-prettier": "^3.1.1",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"faker": "^5.5.3",
"husky": "^4.3.0",
"jest": "^27.0.5",
"prettier": "^2.1.2",
"redis": "^4.0.4",
"ts-jest": "^27.0.5",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
},
"publishDeps": {
"peer": {
"@typescript-eslint/eslint-plugin": ">=4 || <5",
"@typescript-eslint/parser": ">=4 || <5",
"redis": ">=4 || <5",
"date-fns": ">=2 || <3",
"eslint": ">=7.2.0",
"eslint-config-airbnb-base-typescript-prettier": ">=3.1 || <4",
"eslint-config-airbnb-typescript-prettier": ">=4 || <5",
"joi": ">=17 || <18",
"jsonwebtoken": "8",
"uuid": "8",
"prettier": ">=2",
"ts-jest": ">=21",
"@aws-sdk/client-dynamodb": "^3.421.0 || < 4",
"@aws-sdk/client-eventbridge": "^3.421.0 || < 4",
"@aws-sdk/client-kinesis": "^3.421.0 || < 4",
"@aws-sdk/client-lambda": "^3.421.0 || < 4",
"@aws-sdk/client-s3": "^3.421.0 || < 4",
"@aws-sdk/client-secrets-manager": "^3.423.0 || < 4",
"@aws-sdk/client-ses": "^3.421.0 || <4",
"@aws-sdk/client-sfn": "^3.423.0 || <4",
"@aws-sdk/client-sns": "^3.421.0 || <4",
"@aws-sdk/client-sqs": "^3.421.0 || <4",
"@aws-sdk/client-ssm": "^3.421.0 || <4",
"@aws-sdk/lib-dynamodb": "^3.421.0 || <4",
"@aws-sdk/util-dynamodb": "^3.421.0 || <4"
},
"dep": {
"axios": "^0.22.0",
"qs": "^6.10.1",
"deepmerge": "^4.2.2"
}
},
"scripts": {
"lint": "concurrently \"tsc --noEmit\" \"eslint --fix --ext ts,tsx --quiet\"",
"test": "jest --rootDir . --silent --coverage",
"build": "tsc --project tsconfig.build.json",
"version": "node scripts/apply-version.js"
}
}