-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 2.38 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
73
74
{
"name": "RH-Ticker",
"version": "3.0.0",
"license": "MIT",
"description": "Robinhood Ticker",
"repository": "https://github.com/peniqliotuv/robinhood-ticker",
"main": "src/main.js",
"scripts": {
"prod-start": "cross-env NODE_ENV=production electron .",
"start": "cross-env NODE_ENV=development electron .",
"build": "cross-env NODE_ENV=production cp -r src/styles lib && cp -r src/utils lib && cp -r src/views lib && babel src --out-dir lib --ignore utils",
"build-watch": "cp -r src/styles lib && cp -r src/utils lib && cp -r src/views lib && babel src --out-dir lib --ignore utils --watch",
"debug": "cross-env NODE_ENV=development electron --inspect=5858 .",
"pack": "cross-env NODE_ENV=production electron-builder --dir",
"dist": "cross-env NODE_ENV=production electron-builder",
"publish": "cross-env NODE_ENV=production build -p always"
},
"keywords": [
"Robinhood"
],
"author": "Jerry Tsui",
"build": {
"appId": "robinhoodticker",
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon-512.png",
"target": "dmg"
},
"dmg": {
"background": "build/background.png"
},
"win": {
"target": "nsis",
"icon": "build/icon-512.png",
"legalTrademarks": "Copyright Jerry Tsui, 2018"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.4.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"devtron": "^1.4.0",
"electron": "^4.0.1",
"electron-builder": "^20.38.4",
"electron-builder-squirrel-windows": "^20.22.0",
"electron-debug": "^1.5.0",
"electron-reload": "^1.2.5",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"nodemon": "^1.18.2"
},
"dependencies": {
"about-window": "^1.9.1",
"alphavantage": "^1.1.1",
"auto-launch": "^5.0.5",
"babel-plugin-transform-remove-console": "^6.9.2",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"chartist": "^0.11.0",
"chartist-plugin-tooltip": "0.0.11",
"countup.js": "^1.9.3",
"electron-log": "^2.2.17",
"electron-store": "^1.3.0",
"electron-updater": "^4.0.6",
"install": "^0.11.0",
"menubar": "^5.2.3",
"moment-timezone": "^0.5.21",
"mousetrap": "^1.6.2",
"node-fetch": "^1.7.3",
"query-string": "^5.1.1"
}
}