-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
152 lines (152 loc) · 4.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "kiosk",
"productName": "Kiosk",
"version": "1.0.0",
"private": true,
"main": "./build/host/main.js",
"homepage": "./",
"scripts": {
"build": "run-s build:admin build:host",
"build:admin": "tsc --build tsconfig.json",
"build:host": "tsc --build tsconfig.host.json",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"package": "run-s package:admin package:host package:app",
"package:admin": "react-scripts build",
"package:host": "webpack",
"package:app": "electron-forge make",
"start": "stmux --mouse -w always -m system -t \"Ctrl+A + K to quit\" -- [ \"npm run start:host\" .. \"npm run start:admin\" ]",
"start:admin": "cross-env BROWSER=none react-scripts start",
"start:host": "cross-env NODE_ENV=dev nodemon --exec \"npm run build:host && npm run start:host:wait && npm run start:host:run\"",
"start:host:wait": "wait-on http://localhost:3000",
"start:host:run": "run-electron ."
},
"repository": "https://github.com/warrenseine/kiosk",
"author": "Warren Seine",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.46",
"@electron-forge/maker-squirrel": "^6.0.0-beta.46",
"@electron-forge/publisher-github": "^6.0.0-beta.46",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/lowdb": "^1.0.9",
"@types/moment": "^2.13.0",
"@types/node": "^12.12.5",
"@types/qs": "^6.9.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/react-redux": "^7.1.5",
"@types/redux": "^3.6.0",
"@types/redux-promise-middleware": "^6.0.0",
"@types/uuid": "^3.4.6",
"@types/webpack": "^4.41.0",
"cross-env": "^6.0.3",
"electron": "^7.1.4",
"electron-log": "^4.0.6",
"electron-packager": "^14.1.1",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react-scripts": "^3.3.0",
"run-electron": "^1.0.0",
"stmux": "^1.7.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.2",
"wait-on": "^3.3.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@material-ui/core": "^4.6.0",
"@material-ui/icons": "^4.5.1",
"@monaco-editor/react": "^2.3.0",
"cors": "^2.8.5",
"electron-squirrel-startup": "^1.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-validator": "^6.2.0",
"is-admin": "^3.0.0",
"lodash": "^4.17.15",
"lowdb": "^1.0.0",
"moment": "^2.24.0",
"monaco-editor": "^0.18.1",
"qs": "^6.9.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^7.1.3",
"react-textfit": "^1.1.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-promise-middleware": "^6.1.2",
"redux-promise-middleware-actions": "^3.0.1",
"regedit": "^3.0.3",
"type-fest": "^0.8.1",
"typeface-roboto": "0.0.75",
"typesafe-actions": "^5.1.0",
"update-electron-app": "^1.5.0",
"use-debounce": "^3.1.0",
"uuid": "^3.3.3"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"forge": {
"packagerConfig": {
"icon": "public/images/icons/icon.ico",
"ignore": [
"/node_modules/.*/",
".vscode",
".github",
"src",
"public",
"kiosk.json",
"nodemon.json",
"package-lock.json",
"tsconfig.host.json",
"tsconfig.json",
"webpack.config.js"
],
"extraResource": [
"node_modules/regedit/vbs"
],
"win32metadata": {
"requestedExecutionLevel": "requireAdministrator"
}
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"iconUrl": "https://raw.githubusercontent.com/warrenseine/kiosk/master/public/images/icons/icon.ico",
"setupIcon": "public/images/icons/icon.ico",
"loadingGif": "public/images/logos/logo-simple.gif",
"description": "Kiosk is an application to manage your monitoring screens."
}
}
],
"publishers": [
{
"name": "@electron-forge/publisher-github",
"config": {
"repository": {
"owner": "warrenseine",
"name": "kiosk"
}
}
}
]
}
}
}