This repository has been archived by the owner on Apr 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.41 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
{
"name": "web-3tier",
"version": "0.1.0",
"bin": {
"web-3tier": "bin/web-3tier.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint --fix \"./**/*[^d].ts\"",
"test": "jest"
},
"pre-commit": [
"build",
"test"
],
"devDependencies": {
"@aws-cdk/assert": "1.8.0",
"@types/jest": "24.0.18",
"@types/node": "8.10.51",
"@typescript-eslint/eslint-plugin": "2.3.0",
"@typescript-eslint/parser": "2.3.0",
"eslint": "6.4.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-prettier": "3.1.1",
"pre-commit": "1.2.2",
"prettier": "1.18.2",
"ts-jest": "24.1.0",
"ts-node": "8.4.1"
},
"dependencies": {
"@aws-cdk/aws-autoscaling": "1.8.0",
"@aws-cdk/aws-ec2": "1.8.0",
"@aws-cdk/aws-elasticloadbalancingv2": "1.8.0",
"@aws-cdk/aws-rds": "1.8.0",
"@aws-cdk/core": "1.8.0",
"aws-cdk": "1.8.0",
"npm": "6.11.3",
"source-map-support": "0.5.13",
"typescript": "3.6.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
],
"preset": "ts-jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix \"./**/*[^d].ts\"",
"git add"
]
}
}