forked from aws-samples/baseline-environment-on-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.25 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
{
"private": true,
"name": "baseline-environment-on-aws",
"version": "2.1.0",
"description": "Baseline Environment on AWS",
"repository": {
"type": "git",
"url": "https://github.com/aws-samples/baseline-environment-on-aws.git"
},
"license": "MIT-0",
"engines": {
"node": ">=14",
"npm": ">=8.1.0"
},
"workspaces": [
"usecases/*",
"tools/*"
],
"scripts": {
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"release": "standard-version"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"simple-git-hooks": "^2.8.1",
"standard-version": "^9.5.0",
"typescript": "~4.9.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"git-secrets --scan"
],
"*.(ts|tsx|js|jsx)": [
"npx eslint --fix"
],
"*.(ts|tsx|js|jsx|json|html|yml|yaml|md|graphql|css|scss|less|vue|flow)": [
"npx prettier --write"
]
}
}