-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
48
49
50
{
"name": "@committed/gatsby-theme-docs-workspace",
"private": true,
"version": "0.0.0-development",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"clean": "npm run clean --workspace=example",
"start": "npm run start --workspace=example",
"build": "npm run build --workspaces",
"serve": "npm run serve --workspace=example",
"deploy": "npm run deploy --workspaces",
"deploy:ci": "npm run deploy:ci --workspaces",
"bump": "npm version minor -ws --no-git-tag-version; npm version minor --no-git-tag-version",
"format": "prettier --write .",
"format:check": "prettier --check .",
"commit": "cz"
},
"workspaces": [
"theme",
"example"
],
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"semantic-release": "^18.0.1"
},
"lint-staged": {
"*": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}