forked from plesk/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "plesk-desktop",
"version": "1.0.0",
"description": "Desktop app for Plesk servers management.",
"main": "main.js",
"scripts": {
"start": "electron .",
"watch": "watchify app/app.js -t babelify -o js/bundle.js",
"build:osx": "electron-packager ./ --platform=darwin --arch=x64 --out=dist/osx"
},
"author": "Plesk",
"license": "Apache-2.0",
"build": {
"app-bundle-id": "com.plesk.plesk-desktop",
"app-category-type": "public.app-category.developer-tools",
"productName": "Plesk Desktop",
"osx": {
"title": "Plesk Desktop",
"window": {
"position": {
"x": 250,
"y": 250
}
}
}
},
"devDependencies": {
"electron": "~1.6.2",
"electron-builder": "^3.25.0",
"electron-packager": "^7.0.1",
"electron-prebuilt": "^1.4.13",
"watchify": "^3.9.0"
},
"dependencies": {
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"bootstrap": "^3.3.7",
"electron-json-storage": "^3.0.2",
"font-awesome": "^4.7.0",
"plesk-api-client": "^1.0.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router-dom": "^4.0.0",
"xml2js": "^0.4.17"
}
}