-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.6 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
{
"name": "electro-reactro",
"version": "0.1.0",
"private": true,
"author": "Nitesh Soni",
"description": "starter kit for react based desktop application",
"devDependencies": {
"electron": "^1.4.14",
"foreman": "^3.0.1",
"react-scripts": "^2.1.1",
"electron-builder": "^20.15.1"
},
"dependencies": {
"react": "^15.6.2",
"react-dom": "^15.4.2"
},
"build": {
"extends": null,
"appId": "oneoften",
"files": [
"./build/**/*",
"./src/electron-starter.js"
],
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "build/favicon.ico"
},
"directories": {
"buildResources": "assets"
}
},
"homepage": "./",
"main": "./src/electron-starter.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"dev": "nf start -p 3000",
"electron-build": "electron-builder",
"release": "yarn react-build && electron-builder --publish=always",
"pack": "yarn react-build && yarn electron-build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}