-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.25 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
{
"private": true,
"name": "@blocks/desktop",
"description": "Desktop app for the Blocks MDX WYSIWYG",
"author": "John Otander",
"license": "MIT",
"version": "0.0.1",
"repository": "blocks/desktop",
"main": "main/index.js",
"scripts": {
"start": "yarn prepare && electron main/index.js",
"build": "build",
"pack": "build --dir",
"prepare": "babel src -d renderer",
"watch": "babel src -d renderer -w"
},
"dependencies": {
"@blocks/editor": "0.0.28",
"@blocks/kit": "0.0.28",
"@mdx-js/react": "1.1.4",
"electron-log": "3.0.6",
"electron-store": "4.0.0",
"lodash.debounce": "4.0.8",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-feather": "2.0.3",
"theme-ui": "0.2.25"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"electron": "6.0.0",
"electron-builder": "21.2.0"
},
"build": {
"appId": "io.blocks",
"productName": "Blocks",
"copyright": "© 2019 Blocks contributores. All rights reserved",
"mac": {
"category": "public.app-category.developer-tools"
},
"files": [
"**/*",
"!src"
]
},
"resolutions": {
"theme-ui": "0.2.25"
}
}