This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.24 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
{
"name": "mono-switcher",
"version": "1.0.0",
"license": "BSD-4-Clause",
"author": "Anthony Mattera (KernelZechs) <[email protected]>",
"private": true,
"main": "build/electron.js",
"dependencies": {
"@serialport/parser-byte-length": "^8.0.6",
"clone": "^2.1.2",
"electron-store": "^5.1.0",
"require": "^2.4.20",
"serialport": "^8.0.7"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-stage-0": "^7.0.0",
"@google-cloud/translate": "^5.0.2",
"@serialport/parser-inter-byte-timeout": "^8.0.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-react-css-modules": "^5.2.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"dotenv": "^8.2.0",
"electron": "^7.1.1",
"electron-builder": "^21.2.0",
"electron-rebuild": "^1.10.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.16.0",
"file": "^0.2.2",
"file-loader": "^5.0.2",
"fs": "^0.0.1-security",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-rnd": "^10.0.0",
"react-scripts": "3.3.1",
"sass-loader": "^8.0.0",
"system": "^2.0.1",
"wait-on": "^4.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-glob-entry": "^2.1.1",
"write-file-atomic": "^3.0.1"
},
"scripts": {
"electron-rebuild": "electron-rebuild -f -w serialport",
"fix": "eslint --fix src/**",
"start": "webpack && electron ./build/electron.js & webpack --watch",
"build": "webpack",
"bundle": "rm -Rf ./build && rm -Rf ./dist && electron-rebuild -f -w serialport && webpack && electron-builder"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
},
"build": {
"appId": "mono-tracker",
"artifactName": "MonoSwitcher-${version}.${ext}",
"productName": "MonoSwitcher",
"files": [
"build/**/*"
],
"extraFiles": [
{
"from": "src/public/shared/resources/icons",
"to": "icons",
"filter": [
"**/*"
]
}
],
"linux": {
"icon": "./build/resources/icons/icon.png",
"target": [
{
"target": "tar.gz"
},
{
"target": "deb"
},
{
"target": "AppImage"
}
],
"category": "Multimedia"
},
"win": {
"icon": "./build/resources/icons/icon.ico",
"target": [
{
"target": "zip"
},
{
"target": "nsis"
}
]
},
"mac": {
"icon": "./build/resources/icons/icon.icns",
"target": "dmg"
}
}
}