This repository has been archived by the owner on Sep 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 1.68 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "crypto-monitor",
"productName": "Crypto Monitor",
"version": "1.0.1",
"description": "The app for hodlers and occasional traders, always have an eye on your investments and never miss a price again!",
"keywords": [
"crypto",
"bitstamp",
"bitcoin",
"macos",
"cryptocurrency",
"hodl",
"hodler",
"etherum",
"kraken",
"price",
"btc"
],
"main": "main/index.js",
"scripts": {
"start": "electron --inspect=8000 --enable-logging .",
"build": "next build renderer && next export renderer",
"dist": "npm run build && electron-builder"
},
"build": {
"asar": true,
"files": [
"**/*",
"!.env",
"!renderer",
"renderer/out"
],
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "./renderer/static/icon.icns"
}
},
"devDependencies": {
"devtron": "1.4.0",
"electron": "4.0.5",
"electron-builder": "^20.28.3",
"next": "5.1.0",
"react": "16.8.2",
"react-dom": "16.8.2"
},
"dependencies": {
"@haiku/littletower-close": "0.0.2",
"@haiku/littletower-settings3": "0.0.4",
"app-root-path": "3.0.0",
"auto-launch": "5.0.5",
"babel-plugin-inline-import": "3.0.0",
"bitfinex-api-node": "2.0.0-beta.1",
"bufferutil": "4.0.1",
"electron-debug": "2.1.0",
"electron-is-dev": "1.0.1",
"electron-log": "4.1.0",
"electron-next": "3.1.5",
"electron-store": "2.0.0",
"gdax": "0.8.0",
"i18next": "11.6.0",
"i18next-xhr-backend": "1.5.1",
"isomorphic-unfetch": "3.0.0",
"pusher-js": "4.4.0",
"react-i18next": "7.11.0",
"utf-8-validate": "5.0.2",
"ws": "6.1.4",
"xhr2": "0.1.4"
}
}