-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
29 lines (29 loc) · 928 Bytes
/
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
{
"name": "docs",
"description": "Agora Documentation",
"homepage": "https://docs.agora.io",
"repository": {
"type": "git",
"url": "https://github.com/AgoraDoc/doc_source.git"
},
"devDependencies": {
"chalk": "^3.0.0",
"husky": "^7.0.4",
"lint-staged": "11.2.6",
"prettier": "^2.5.1"
},
"scripts": {
"check": "npm run prettier-check",
"fmt": "npm run format",
"format": "prettier --write \"**/*.{css,json,md,scss,yaml,yml}\"",
"prepare": "husky install",
"prettier": "prettier --write \"**/*.{css,json,md,scss,yaml,yml}\"",
"prettier-check": "prettier --check \"**/*.{css,json,md,scss,yaml,yml}\"",
"test": "prettier --list-different \"**/*.{css,json,md,scss,yaml,yml}\""
},
"lint-staged": {
"*.{css,json,md,scss,yaml,yml}": [
"prettier --write"
]
}
}