-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
76 lines (76 loc) · 2.19 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
75
76
{
"name": "StockStalk",
"version": "1.0.7",
"author": "FOO BAR",
"private": true,
"description": "Your stocks on your desktop",
"license": "MIT",
"main": "build/electron-starter.js",
"repository": "github:sagivo/StockStalk",
"homepage": "./",
"dependencies": {
"electron-context-menu": "*",
"electron-is-dev": "*",
"electron-updater": "^2.20.1",
"jimp": "oliver-moran/jimp",
"mobx": "*",
"mobx-persist": "*",
"mobx-react": "*",
"react": "*",
"react-countup": "*",
"react-dom": "*",
"react-highcharts": "*",
"request": "*",
"request-promise-native": "*"
},
"devDependencies": {
"babel-cli": "*",
"babel-preset-env": "*",
"babel-preset-es2015": "*",
"babel-preset-react": "*",
"babel-register": "*",
"concurrently": "^3.5.1",
"cross-spawn": "*",
"custom-react-scripts": "*",
"electron": "*",
"electron-builder": "*",
"electron-publisher-s3": "*",
"firebase-admin": "*",
"npm-run-all": "*",
"stylus": "*",
"wait-on": "*"
},
"scripts": {
"watch-css": "node scripts/cssBuild watch",
"react-start": "react-scripts start",
"electron-start": "node src/electron-wait-react",
"start": "npm-run-all -p watch-css react-start",
"dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"build-css": "node scripts/cssBuild build",
"build": "yarn build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"pack": "electron-builder --dir",
"dist": "yarn run build && build",
"dist-win": "yarn run build && build --win",
"dist-linux": "yarn run build && build --linux",
"dist-all": "yarn run build && electron-builder --mac --win --linux",
"publish": "yarn run build && electron-builder --mac --win --linux --publish always",
"_postinstall": "electron-builder install-app-deps"
},
"build": {
"publish": [
{
"provider": "github"
}
],
"mac": {
"category": "public.app-category.finance"
},
"appId": "club.stockstalk.app",
"directories": {
"buildResources": "assets"
}
}
}