-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "AngelFish",
"version": "1.2.0",
"homepage": "https://angelfish.bhi.ma",
"license": "MIT",
"author": {
"name": "jniles",
"email": "jonathanwniles@imaworldhealth.org",
"url": "https://angelfish.bhi.ma"
},
"build": {
"appId": "com.angelfish.app",
"icon": "src/icon.png",
"extraResources": [
{
"from": "src/main/i18n/",
"to": "i18n/"
}
],
"linux": {
"category": "Utility"
}
},
"description": "Synchronize databases over the network via SSH.",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder --linux deb --x64",
"pack": "electron-builder --dir",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"human-readable-bytes": "^1.1.0",
"i18next": "^19.8.4",
"i18next-electron-language-detector": "^0.0.10",
"i18next-sync-fs-backend": "^1.1.1",
"node-mysql-import": "^1.1.0",
"node-ssh": "^11.1.1",
"source-map-support": "^0.5.19",
"spectre.css": "^0.5.9"
},
"devDependencies": {
"css-loader": "^5.0.1",
"electron": "^11.0.2",
"electron-builder": "^22.9.1",
"electron-webpack": "^2.8.2",
"electron-webpack-eslint": "^6.0.0",
"electron-webpack-vue": "^2.4.0",
"eslint": "^7.14.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-vue": "^7.1.0",
"vue": "^2.6.12",
"vue-eslint-parser": "^7.1.1",
"webpack": "~4.44.2"
},
"resolutions": {
"js-yaml": "3.13.1"
}
}