forked from AaronCuddeback/gatsby-theme-phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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
46
47
48
{
"name": "@arshad/gatsby-themes",
"description": "A collection of free themes for Gatsby",
"author": "arshad <[email protected]>",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"workspaces": [
"core/*",
"examples/*",
"plugins/*",
"starters/*",
"themes/*"
],
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"release": "lerna publish && npm run sync",
"sync": "npm run sync:starters && npm run sync:examples",
"sync:starters": "./scripts/sync.sh \"starters/*\"",
"sync:examples": "./scripts/sync.sh \"examples/*\"",
"themes:phoenix": "yarn workspace @arshad/gatsby-theme-phoenix",
"starters:phoenix": "yarn workspace @arshad/gatsby-starter-phoenix",
"examples:phoenix": "yarn workspace @arshad/gatsby-example-phoenix",
"themes:flex": "yarn workspace gatsby-theme-flex",
"starters:flex": "yarn workspace gatsby-starter-flex",
"examples:flex": "yarn workspace gatsby-example-flex"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"husky": "3.1.0",
"lerna": "3.19.0",
"prettier": "1.19.1"
},
"dependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4"
}
}