-
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.12 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.12 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
{
"name": "samples-electron",
"productName": "Electron Samples",
"version": "1.0.4",
"description": "Electron Samples",
"main": "build/main/main.js",
"scripts": {
"pretsc": "rimraf build/ && copy-files-from-to --config copy-files-from-to.json",
"tsc": "tsc",
"pack": "electron-builder --dir",
"start": "electron .",
"inspect": "electron --inspect-brk=5858 .",
"reset": "git reset --hard",
"prebuildMac": "rimraf dist/",
"buildMac": "electron-builder build --mac",
"buildWin": "electron-builder build --win",
"publish": "electron-builder -wm -p always",
"electron-rebuild": "electron-rebuild",
"postinstall": "electron-builder install-app-deps",
"test": "mocha"
},
"repository": "https://github.com/codingbootcampru/samples-electron",
"keywords": [
"electron",
"samples",
"demo"
],
"build": {
"files": [
"./build/**/*"
],
"appId": "ru.busation.samples-electron",
"win": {
"icon": "src/images/icon.ico",
"target": [
"nsis"
]
},
"nsis": {
"runAfterFinish": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createStartMenuShortcut": true
},
"mac": {
"icon": "src/images/icon.icns",
"target": [
"dmg",
"zip"
],
"category": "public.app-category.utilities"
}
},
"author": "klishevich",
"license": "CC0-1.0",
"devDependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"copy-files-from-to": "^2.1.0",
"electron": "6.1.4",
"electron-builder": "21.2.0",
"electron-rebuild": "^1.8.6",
"mocha": "^6.2.2",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"spectron": "^8.0.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"dependencies": {
"bootstrap": "^4.3.1",
"electron-is-dev": "^1.1.0",
"electron-log": "^3.0.9",
"electron-reload": "^1.5.0",
"electron-updater": "^4.2.0",
"electron-window-state": "^5.0.3",
"node-notifier": "^5.4.3",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.12.0"
}
}