-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "wedeploy-desktop",
"productName": "wedeploy-desktop",
"description": "Wedeploy.com Desktop Application",
"author": "Djalma Araujo <[email protected]>",
"version": "1.0.1",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/djalmaaraujo/wedeploy-desktop.git"
},
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "DEBUG=electron-builder yarn compile && DEBUG=electron-builder electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"release": "build"
},
"dependencies": {
"electron-fetch": "^1.1.0",
"electron-store": "^1.3.0",
"ini": "^1.3.4",
"md5": "^2.2.1",
"menubar": "^5.2.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"socket.io-client": "^2.0.3",
"source-map-support": "^0.5.0"
},
"devDependencies": {
"babel-preset-react": "^6.24.1",
"electron": "1.7.11",
"electron-builder": "19.48.3",
"electron-webpack": "1.11.0",
"webpack": "^3.6.0",
"webpack-build-notifier": "^0.1.16"
},
"electronWebpack": {
"whiteListedModules": [
"menubar"
]
},
"build": {
"files": [
"static/**/*",
"*.icns"
]
}
}