-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.92 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
{
"name": "aws-cdk-boilerplate",
"version": "0.1.0",
"private": "true",
"license": "MIT",
"scripts": {
"cdk": "cdk",
"deploy": "cdk deploy",
"diff": "cdk diff",
"fmt": "run-s fmt:eslint fmt:prettier",
"fmt:eslint": "eslint --ignore-path .gitignore --fix .",
"fmt:prettier": "prettier --ignore-path .gitignore --write .",
"lib:check": "ncu",
"lib:upgrade": "ncu -u",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@aws-cdk/core": "1.x",
"source-map-support": "0.x"
},
"devDependencies": {
"@aws-cdk/assert": "1.x",
"@aws-cdk/aws-apigatewayv2": "1.x",
"@aws-cdk/aws-lambda-nodejs": "1.x",
"@trivago/prettier-plugin-sort-imports": "1.x",
"@types/aws-lambda": "8.x",
"@types/jest": "26.x",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "4.x",
"@typescript-eslint/parser": "4.x",
"aws-cdk": "1.x",
"eslint": "7.x",
"eslint-config-prettier": "6.x",
"eslint-config-standard": "16.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-node": "11.x",
"eslint-plugin-prettier": "3.x",
"eslint-plugin-promise": "4.x",
"husky": "4.x",
"jest": "26.x",
"lint-staged": "10.x",
"npm-check-updates": "11.x",
"npm-run-all": "4.x",
"parcel": "^2.0.0-nightly.562",
"prettier": "2.x",
"prettier-plugin-packagejson": "2.x",
"ts-jest": "26.x",
"ts-node": "9.x",
"typescript": "4.x"
},
"engines": {
"node": "14.15.0"
},
"targets": {
"cdk-lambda": {
"context": "node",
"includeNodeModules": {
"aws-sdk": false
},
"sourceMap": false,
"minify": false,
"engines": {
"node": ">= 12"
}
}
}
}