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
82 lines (82 loc) · 2.15 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.15 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"private": true,
"name": "blocks",
"scripts": {
"start": "preconstruct dev && yarn docs",
"build": "yarn gatsby build",
"build:packages": "preconstruct build",
"changeset": "changeset",
"clean": "gatsby clean",
"docs": "gatsby develop",
"docs-deploy": "now switch blocks-ui && now && now alias $(pbpaste) blocks-ui.com",
"lint": "eslint .",
"postinstall": "manypkg check && preconstruct dev",
"release": "yarn build:packages && changeset publish",
"test": "jest"
},
"workspaces": [
"packages/*"
],
"preconstruct": {
"packages": [
"packages/blocks-ui",
"packages/react",
"packages/property-controls"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"jest": {
"testPathIgnorePatterns": [
"/.cache/",
"/packages/mdx/"
],
"testEnvironment": "node"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "7.8.3",
"@babel/preset-env": "7.8.4",
"@babel/preset-react": "7.8.3",
"@changesets/cli": "2.4.1",
"@emotion/core": "10.0.27",
"@manypkg/cli": "0.9.0",
"@mdx-js/mdx": "1.5.5",
"@mdx-js/react": "1.5.5",
"@preconstruct/cli": "1.1.4",
"@theme-ui/components": "0.3.1",
"@theme-ui/presets": "0.3.0",
"@theme-ui/prism": "0.3.0",
"babel-eslint": "10.0.3",
"eslint": "6.8.0",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "2.3.0",
"gatsby": "2.19.14",
"gatsby-plugin-catch-links": "2.1.25",
"gatsby-plugin-fathom": "1.2.0",
"gatsby-plugin-manifest": "2.2.41",
"gatsby-plugin-mdx": "1.0.70",
"gatsby-plugin-react-helmet": "3.1.22",
"gatsby-plugin-theme-ui": "0.3.0",
"gatsby-source-filesystem": "2.1.48",
"husky": "4.2.1",
"jest": "25.1.0",
"lint-staged": "10.0.7",
"prettier": "1.19.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-helmet": "5.2.1",
"theme-ui": "0.3.1"
}
}