forked from blocks/blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 811 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 811 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,
"name": "blocks",
"scripts": {
"start": "yarn workspace demo start",
"build": "lerna run prepare",
"docs": "gatsby develop",
"docs-build": "gatsby build",
"docs-deploy": "now && now alias $(pbpaste) mdx-blocks.com && now alias $(pbpaste) www.mdx-blocks.com",
"now-build": "yarn docs-build",
"publish": "lerna publish"
},
"workspaces": [
"packages/*",
"demo",
"gatsby/packages/gatsby"
],
"devDependencies": {
"gatsby": "^2.4.2",
"husky": "^2.2.0",
"lerna": "^3.13.4",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --parser flow --single-quote --no-semi --write",
"git add"
]
}
}