-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.5 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
{
"name": "Node-Express-EJS-Mysql",
"version": "1.0.20",
"description": "A simple app with Node-Express-EJS-Mysql",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"pack": "build --dir",
"pack-installer": "build"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "tungdv",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^1.6.10",
"electron-builder": "^19.6.1",
"electron-builder-squirrel-windows": "^19.6.0",
"http-server": "^0.10.0"
},
"dependencies": {
"auto-updater": "^1.0.2",
"body-parser": "^1.17.2",
"ejs": "^2.5.6",
"electron-gh-releases": "^2.0.4",
"electron-is-dev": "^0.1.2",
"electron-log": "^2.2.6",
"electron-updater": "^2.4.1",
"express": "^4.15.3",
"moment": "^2.18.1",
"mysql": "^2.13.0"
},
"build": {
"appId": "com.electron.nodeejsexpress",
"productName": "NodeEjsExpress",
"publish": [
{
"provider": "generic",
"url": "http://10.10.0.126:8080/"
}
],
"mac": {
"target": [
"zip",
"dmg"
],
"category": "your.app.category.type",
"icon": "icon/icon.icns"
},
"dmg": {
"icon": "icon/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": [
"NSIS"
],
"icon": "icon/icon.ico"
}
}
}