-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.75 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
77
{
"name": "desktop",
"description": "Desktop app for league client helper",
"version": "0.3.2",
"author": "Justin Smid",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"repository": {
"type": "git",
"url": "https://github.com/justinsmid/accept-league-queue.git"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "justinsmid",
"repo": "accept-league-queue"
}
],
"appId": "justinsmid.league-helper.desktop",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"buffer": "^5.6.0",
"cors": "^2.8.5",
"electron-updater": "^4.3.8",
"express": "^4.17.1",
"lcu-connector": "^2.1.3",
"node-fetch": "^2.6.0",
"node-localstorage": "^2.1.6",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-burger-menu": "^2.7.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.2",
"tmi.js": "^1.5.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"dev": "nf start",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"electron": "^9.2.0",
"electron-builder": "^22.8.0",
"foreman": "^3.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}