-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
38 lines (38 loc) · 1.13 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
{
"private": true,
"scripts": {
"test": "yarn workspace gatsby-theme-portfolio-minimal test",
"clean": "yarn workspace example-site clean",
"build": "yarn workspace example-site build",
"develop": "yarn workspace example-site develop",
"serve": "yarn workspace example-site serve",
"format": "prettier --write --ignore-path .gitignore \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|graphql|md|mdx)\"",
"lint": "yarn workspaces run lint"
},
"workspaces": [
"gatsby-theme-portfolio-minimal",
"example-site"
],
"repository": {
"type": "git",
"url": "https://github.com/konstantinmuenster/gatsby-theme-portfolio-minimal.git"
},
"devDependencies": {
"husky": "4",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"yarn lint"
],
"*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)": [
"yarn format"
]
}
}