-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
54 lines (54 loc) · 1.29 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
{
"private": true,
"name": "baseline-environment-on-aws",
"version": "3.0.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": ">=18",
"npm": ">=8.1.0"
},
"workspaces": [
"usecases/*"
],
"scripts": {
"depcheck": "depcheck",
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"release": "standard-version"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "18.19.64",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"depcheck": "^1.4.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"standard-version": "^9.5.0",
"typescript": "~5.6.3"
},
"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"
]
}
}