-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "@mziyut/articles",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"keywords": [],
"author": "Yuta Mizui <me@mziyut.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mziyut/articles.git"
},
"bugs": {
"url": "https://github.com/mziyut/articles/issues"
},
"homepage": "https://github.com/mziyut/articles#readme",
"private": true,
"workspaces": [
"devto",
"qiita"
],
"dependencies": {},
"devDependencies": {
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"lint-staged": {
"**/*": [
"yarn workspaces run prettier --write --ignore-unknown"
],
"*.md": [
"yarn workspaces run textlint --config .textlintrc.json --fix",
"yarn workspaces run textlint --config .textlintrc.json"
]
},
"prettier": {
"singleQuote": true
}
}