-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
90 lines (90 loc) · 2.33 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
{
"name": "gauzy-pulumi",
"version": "0.1.0",
"description": "Gauzy Pulumi",
"license": "GPL-3.0",
"homepage": "https://gauzy.co",
"repository": {
"type": "git",
"url": "git+https://github.com/ever-co/gauzy-pulumi.git"
},
"bugs": {
"url": "https://github.com/ever-co/gauzy-pulumi/issues"
},
"private": true,
"author": {
"name": "Ever Co. LTD",
"email": "[email protected]",
"url": "https://ever.co"
},
"scripts": {
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"precommit": "yarn lint-staged",
"lint": "tslint -p tsconfig.json -c tslint.json",
"commit": "git-cz",
"commit:lint": "commitlint -E HUSKY_GIT_PARAMS",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@types/node": "^14.0.27",
"@types/pg": "^7.14.4",
"@types/uuid": "^8.3.0",
"commitizen": "^4.1.2",
"conventional-changelog": "^3.1.23",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-tslint": "^0.4.2",
"pretty-quick": "^2.0.1",
"rxjs-tslint": "^0.1.8",
"semantic-release": "^17.1.1",
"snyk": "^1.374.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-language-service": "^0.9.9"
},
"dependencies": {
"@pulumi/aws": "^3.1.0",
"@pulumi/awsx": "^0.21.0",
"@pulumi/cloud": "^0.21.0",
"@pulumi/cloud-aws": "^0.21.0",
"@pulumi/cloudflare": "^2.4.0",
"@pulumi/datadog": "^2.6.0",
"@pulumi/docker": "^2.2.3",
"@pulumi/eks": "^0.19.4",
"@pulumi/pulumi": "^2.8.2",
"dotenv": "^8.2.0",
"pg": "^8.3.0",
"uuid": "^8.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"packages/**/*.{ts,json}": [
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --no-verify --staged"
}
},
"snyk": true
}