This repository has been archived by the owner on Jul 6, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "kiko-backend",
"version": "0.1.0",
"bin": {
"kiko": "bin/kiko.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"postinstall": "npx simple-git-hooks",
"lint": "npx eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@aws-cdk/assert": "^1.100.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/aws-lambda": "^8.10.76",
"@types/jest": "^26.0.23",
"@types/node": "^14.17.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"aws-sdk": "2.804.0",
"aws-sdk-mock": "^5.1.0",
"aws-xray-sdk": "^3.3.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"simple-git-hooks": "^2.4.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"dependencies": {
"@aws-cdk/aws-appsync": "^1.102.0",
"@aws-cdk/aws-chatbot": "^1.102.0",
"@aws-cdk/aws-cloudfront": "^1.102.0",
"@aws-cdk/aws-cloudfront-origins": "^1.102.0",
"@aws-cdk/aws-cloudwatch-actions": "^1.102.0",
"@aws-cdk/aws-codecommit": "^1.102.0",
"@aws-cdk/aws-cognito": "^1.102.0",
"@aws-cdk/aws-dynamodb": "^1.102.0",
"@aws-cdk/aws-iam": "^1.102.0",
"@aws-cdk/aws-lambda": "^1.102.0",
"@aws-cdk/aws-lambda-event-sources": "^1.102.0",
"@aws-cdk/aws-lambda-nodejs": "^1.102.0",
"@aws-cdk/aws-logs": "^1.102.0",
"@aws-cdk/aws-pinpoint": "^1.102.0",
"@aws-cdk/aws-s3": "^1.102.0",
"@aws-cdk/aws-sns": "^1.102.0",
"@aws-cdk/aws-stepfunctions": "^1.102.0",
"@aws-cdk/aws-stepfunctions-tasks": "^1.102.0",
"@aws-cdk/core": "^1.102.0",
"@aws-cdk/custom-resources": "^1.102.0",
"source-map-support": "^0.5.19"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm test",
"commit-msg": "npx --no-install commitlint --edit $1"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,js,css,md}": "prettier --write"
}
}