forked from coder/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "coder-docs",
"description": "Documentation for Coder",
"homepage": "https://coder.com/docs",
"bugs": {
"url": "https://github.com/coder/docs/issues",
"email": "[email protected]"
},
"license": "UNLICENSED",
"scripts": {
"prepare": "husky install",
"format:check": "prettier --check '**/*.{css,html,js,json,jsx,ts,tsx,yaml,yml}'",
"format:write": "prettier --write '**/*.{css,html,js,json,jsx,ts,tsx,yaml,yml}'",
"lint": "markdownlint --config .markdownlint.jsonc --rules .markdownlint-rules '**/*.md'",
"lint:fix": "markdownlint --config .markdownlint.jsonc --rules .markdownlint-rules --fix '**/*.md'"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "14.18.12",
"@types/semver-compare": "^1.0.1",
"all-contributors-cli": "^6.20.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"markdownlint-cli": "^0.31.1",
"minimist": "^1.2.6",
"prettier": "2.6.2",
"semver-compare": "^1.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"engines": {
"node": "^14.17.6"
},
"private": true,
"lint-staged": {
"*.{css,html,js,json,jsx,ts,tsx,yaml,yml}": [
"prettier --write"
],
"*.md": [
"markdownlint --config .markdownlint.jsonc --rules .markdownlint-rules --fix",
"prettier --write"
]
},
"dependencies": {
"markdownlint": "^0.25.1"
}
}