-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "ebay-notifier",
"version": "0.2.0",
"description": "watch and notify of new items from ebay",
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"release": "yarn react-build && electron-builder --publish=always",
"pack": "yarn react-build && yarn electron-builder --dir",
"build": "yarn react-build && yarn electron-build",
"start": "concurrently \"BROWSER=none yarn react-start\" \"wait-on http://localhost:8080 && electron .\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.0.1",
"electron": "^3.0.6",
"electron-builder": "^20.29.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-scripts": "^2.1.1",
"electron-renderer-react-scripts-target": "^1.1.1",
"wait-on": "^3.1.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"electron-is-dev": "^1.0.1",
"jquery": "^3.3.1",
"jsonfile": "^5.0.0",
"mkdirp": "^0.5.1",
"request": "^2.88.0"
},
"build": {
"appId": "ebay.notifier",
"mac": {
"category": "script"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}