forked from facebook/react-native-website
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 931 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 931 Bytes
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
{
"private": true,
"workspaces": [
"website",
"plugins/*",
"sync-api-docs"
],
"scripts": {
"postinstall": "yarn update-lock",
"update-lock": "npx yarn-deduplicate",
"lint": "textlint --cache $(git diff master --name-only)",
"lint:fix": "npm run lint -- --fix",
"p": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": "textlint",
"*.@(ts|tsx|js|jsx)": "pretty-quick --staged"
},
"devDependencies": {
"@proofdict/textlint-rule-proofdict": "^3.1.1",
"@textlint-ja/textlint-rule-no-synonyms": "^1.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"sudachi-synonyms-dictionary": "^6.0.0",
"textlint": "^11.8.2",
"textlint-rule-preset-ja-spacing": "^2.0.2",
"textlint-rule-preset-ja-technical-writing": "^4.0.1"
}
}