-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.37 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
{
"name": "scalajs-react-electron",
"version": "0.0.5",
"description": "A minimal Electron application",
"main": "./src/main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-all": "electron-builder -mwl --ia32 --x64"
},
"repository": "https://github.com/trepidacious/scalajs-react-electron",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"scalajs",
"react",
"material-ui",
"demo"
],
"author": "trepidacious",
"license": "Apache-2.0",
"build": {
"appId": "org.rebeam.scalajs-react-electron",
"files": [
"src",
"scalajs_src",
"assets"
],
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"category": "Development",
"target": "AppImage"
},
"publish": [
{
"provider": "generic",
"url": "http://127.0.0.1:8080/"
}
]
},
"dependencies": {
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^2.0.3",
"downshift": "^2.1.5",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.17",
"electron-updater": "^3.1.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"typeface-roboto": "0.0.54"
},
"devDependencies": {
"electron": "^2.0.0",
"electron-builder": "^20.28.4",
"http-server": "^0.11.1"
}
}