forked from blocks/blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
49
50
51
52
53
54
55
56
{
"private": true,
"name": "blocks",
"scripts": {
"start": "yarn docs",
"build": "gatsby build",
"clean": "gatsby clean",
"deps-update": "ncu -u && lerna exec \"ncu -u\"",
"docs": "gatsby develop",
"docs-build": "gatsby build",
"docs-deploy": "now switch blocks-ui && now && now alias $(pbpaste) blocks-ui.com",
"prepare": "lerna run prepare",
"publish": "lerna publish --force-publish=\"*\""
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --parser flow --single-quote --no-semi --write",
"git add"
]
},
"dependencies": {
"@emotion/core": "10.0.22",
"@mdx-js/mdx": "1.5.1",
"@mdx-js/react": "1.5.1",
"@theme-ui/components": "0.2.49",
"@theme-ui/presets": "0.2.44",
"@theme-ui/prism": "0.2.46",
"gatsby-plugin-catch-links": "2.1.19",
"gatsby-plugin-compile-es6-packages": "2.1.0",
"gatsby-plugin-fathom": "1.1.0",
"gatsby-plugin-manifest": "2.2.30",
"gatsby-plugin-mdx": "1.0.58",
"gatsby-plugin-react-helmet": "3.1.16",
"gatsby-plugin-theme-ui": "0.2.43",
"gatsby-source-filesystem": "2.1.39",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-helmet": "5.2.1",
"theme-ui": "0.2.49"
},
"devDependencies": {
"gatsby": "2.18.5",
"husky": "3.1.0",
"lerna": "3.19.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1"
}
}