-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 928 Bytes
/
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
{
"name": "gimme-quote",
"version": "0.3.1",
"description": "A minimal desktop app for getting your dose of famous quotes.",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "build"
},
"build": {
"appId": "com.robinmitra.gimme-quote-desktop",
"productName": "Gimme Quote",
"mac": {
"category": "public.app-category.lifestyle",
"darkModeSupport": true
}
},
"repository": "https://github.com/robinmitra/gimme-quote-desktop",
"keywords": [
"Electron",
"Quotes"
],
"author": "Robin Mitra <[email protected]>",
"license": "GPLv3",
"devDependencies": {
"electron": "^7.0.0",
"electron-builder": "^20.44.4"
},
"dependencies": {
"ajv": "^6.10.2",
"axios": "^0.19.0",
"electron-store": "^5.0.0",
"lodash": "^4.17.15",
"redux": "^4.0.4"
}
}