-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "JournalBear",
"repository": "https://github.com/yrahul3910/journal",
"description": "Easy-to-use journaling application",
"author": {
"name": "Rahul Yedida",
"email": "[email protected]"
},
"build": {
"appId": "com.yrahul.journal",
"linux": {
"target": [
"rpm"
],
"icon": "./build/icons",
"category": "Office"
},
"mac": {
"target": "dir",
"icon": "./build/icon.icns"
},
"win": {
"target": "nsis",
"icon": "./build/icon.ico"
}
},
"version": "6.0.0",
"main": "app/index.js",
"dependencies": {
"alertify.js": "^1.0.12",
"async": "^2.6.0",
"chart.js": "^2.7.2",
"d3": "^4.9.1",
"electron-updater": "^5.2.1",
"emojify.js": "^1.1.0",
"fs-extra": "^5.0.0",
"jquery": "^3.4.0",
"lodash": "^4.17.13",
"moment": "^2.29.4",
"owasp-password-strength-test": "^1.3.0",
"rimraf": "^2.6.2",
"showdown": "^1.8.3",
"targz": "^1.0.1"
},
"devDependencies": {
"electron": "^20.2.0",
"electron-builder": "^23.3.3"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron app/index.js",
"pack": "build --dir",
"dist": "electron-builder --x64",
"dist-mac": "electron-builder --x64 -m",
"ship": "build -p always"
}
}