This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
114 lines (114 loc) · 3.91 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
{
"name": "fs2020-livery-manager",
"productName": "Liveries Mega Pack Manager",
"version": "0.5.3",
"description": "A simple, extensible livery manager for Microsoft Flight Simulator",
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "David Wheatley",
"email": "[email protected]",
"url": "https://github.davwheat.dev/"
},
"contributors": [
{
"name": "Jaap Rodenburg",
"url": "https://github.com/GewoonJaap"
},
{
"name": "Fraser Donaldson",
"url": "https://github.com/NinjaLabs-Dev",
"email": "[email protected]"
}
],
"engines": {
"node": ">=12.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.22.0"
},
"browserslist": [
"last 1 Electron version"
],
"main": "./main.js",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --config webpack.build.config.js && electron --noDevServer .",
"start": "cross-env NODE_ENV=development webpack serve --hot --host 0.0.0.0 --config=./webpack.dev.config.js --mode development",
"prebuild": "yarn clean",
"build": "echo 'Starting build' && cross-env NODE_ENV=production webpack --config webpack.build.config.js --mode production",
"clean": "cross-env rimraf ./dist/ ./publish/ || true",
"prepackage": "yarn build",
"package": "electron-packager ./ --out=./publish --asar --icon=\"./assets/icon.ico\" --protocol=megapack --protocol-name=\"Liveries Mega Pack Manager\"",
"postpackage": "electron-installer-windows --config installer.config.json",
"format": "prettier --write \"**/*.{js,json,less,css,md}\"",
"format:check": "prettier --loglevel debug --check \"**/*.{js,json,less,css,md}\"",
"eslint": "npx eslint .",
"eslint:fix": "yarn eslint --fix"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"@fontsource/ibm-plex-mono": "^4.5.1",
"@fontsource/poppins": "^4.5.0",
"@material-ui/core": "^4.12.3",
"@sentry/electron": "^2.5.4",
"@sentry/integrations": "^6.13.2",
"adm-zip": "^0.5.6",
"clsx": "^1.1.1",
"core-js": "^3.18.0",
"dayjs": "^1.10.7",
"del": "^6.0.0",
"@msfs/electron-json-config": "^1.0.0",
"@msfs/electron-react-titlebar": "^1.0.0",
"electron-squirrel-startup": "^1.0.0",
"mdi-react": "^7.5.0",
"node-fetch": "^2.6.5",
"node-rsa": "^1.1.1",
"notistack": "^1.0.10",
"open": "^7.4.2",
"overlayscrollbars": "^1.13.1",
"overlayscrollbars-react": "^0.2.3",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-markdown": "^5.0.3",
"react-router-dom": "^5.3.0",
"react-router-transition": "^2.1.0",
"react-virtuoso": "^1.11.1",
"regenerator-runtime": "^0.13.9",
"request": "^2.88.2",
"request-progress": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@sentry/webpack-plugin": "^1.17.1",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"dotenv": "^8.6.0",
"electron": "^14.0.1",
"electron-installer-windows": "^3.0.0",
"electron-packager": "^15.4.0",
"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"less": "^4.1.1",
"less-loader": "^8.1.1",
"mini-css-extract-plugin": "^1.6.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.53.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
}
}