-
Notifications
You must be signed in to change notification settings - Fork 576
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 KB
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
{
"name": "eks-workshop",
"version": "1.0.0",
"description": "EKS Workshop",
"main": "index.js",
"private": true,
"workspaces": [
"website",
"releaser"
],
"scripts": {
"serve": "yarn workspace website start",
"spelling:check": "yarn cspell 'website/docs/**/*.md'",
"links:check": "markdown-link-check -q -c link-check-config.json website/docs/**/*.md",
"format:check": "prettier -c .",
"format:fix": "prettier -w .",
"markdown:check": "markdownlint-cli2 'website/docs/**/*.md'",
"lint": "yarn links:check && yarn format:check && yarn markdown:check && yarn spelling:check",
"lint:staged": "yarn lint-staged --concurrent false --no-stash"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@aws/toolkit-md": "^0.1.6",
"cspell": "^9.0.0",
"lint-staged": "^16.0.0",
"markdown-link-check": "3.14.2",
"markdownlint-cli2": "^0.18.0",
"npm-run-all2": "^8.0.0",
"prettier": "^3.2.5",
"prettier-plugin-sh": "^0.18.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,yaml}": [
"prettier --write"
],
"*.md": [
"prettier --write",
"cspell",
"markdown-link-check -q -c link-check-config.json",
"markdownlint-cli2"
]
},
"resolutions": {
"markdown-link-extractor": "4.0.2"
},
"packageManager": "yarn@4.12.0"
}