-
Notifications
You must be signed in to change notification settings - Fork 320
/
package.json
92 lines (92 loc) · 2.41 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
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
83
84
85
86
87
88
89
90
91
92
{
"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": "preconstruct dev",
"release": "yarn build:packages && changeset publish",
"test": "jest",
"test:deps": "manypkg check"
},
"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.10.1",
"@babel/preset-env": "7.10.3",
"@babel/preset-react": "7.10.1",
"@changesets/cli": "2.9.1",
"@emotion/core": "10.0.28",
"@manypkg/cli": "0.14.0",
"@mdx-js/mdx": "1.6.6",
"@mdx-js/react": "1.6.6",
"@preconstruct/cli": "1.1.14",
"@theme-ui/components": "0.3.1",
"@theme-ui/presets": "0.3.0",
"@theme-ui/prism": "0.3.0",
"babel-eslint": "10.1.0",
"eslint": "7.3.1",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "5.1.3",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jest": "23.17.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"gatsby": "2.23.11",
"gatsby-plugin-blocks": "0.0.80",
"gatsby-plugin-catch-links": "2.3.7",
"gatsby-plugin-fathom": "1.3.0",
"gatsby-plugin-manifest": "2.4.14",
"gatsby-plugin-mdx": "1.2.18",
"gatsby-plugin-react-helmet": "3.3.6",
"gatsby-plugin-theme-ui": "0.3.0",
"gatsby-source-filesystem": "2.3.14",
"husky": "4.2.5",
"jest": "26.1.0",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"theme-ui": "0.3.1"
},
"resolutions": {
"@emotion/core": "10.0.28",
"@mdx-js/react": "1.6.6",
"react": "16.13.1",
"react-dom": "16.13.1",
"theme-ui": "0.3.1"
}
}