forked from flybywiresim/installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.3 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
{
"name": "fbw-installer",
"productName": "FlyByWire Installer",
"version": "1.3.0-dev",
"description": "Desktop application to install and customize FlyByWire mods",
"main": ".webpack/main",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make -p win32",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx ."
},
"keywords": [],
"author": "FlyByWire Simulations",
"license": "GPL-3.0",
"config": {
"forge": {
"packagerConfig": {
"icon": "src/main/icons/icon.ico"
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "fbw_installer",
"authors": "FlyByWire Simulations",
"description": "FlyByWire Simulations Installer",
"setupIcon": "./src/main/icons/icon.ico",
"setupExe": "setup.exe",
"iconUrl": "https://cdn.flybywiresim.com/assets/installer/icon.ico",
"loadingGif": "./src/main/icons/loading.gif",
"remoteReleases": "https://cdn.flybywiresim.com/installer/stable"
}
}
],
"plugins": [
[
"@electron-forge/plugin-webpack",
{
"mainConfig": "./webpack.main.config.js",
"renderer": {
"config": "./webpack.renderer.config.js",
"entryPoints": [
{
"html": "./src/renderer/index.html",
"js": "./src/renderer/renderer.tsx",
"name": "main_window"
}
]
}
}
]
]
}
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@electron-forge/cli": "^6.0.0-beta.54",
"@electron-forge/maker-deb": "^6.0.0-beta.54",
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
"@electron-forge/maker-zip": "^6.0.0-beta.54",
"@electron-forge/plugin-webpack": "6.0.0-beta.54",
"@flybywiresim/api-client": "~0.5.0",
"@flybywiresim/tailwind-config": "~0.3.0",
"@marshallofsound/webpack-asset-relocator-loader": "^0.5.0",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/postcss7-compat": "~2.0.3",
"@types/adm-zip": "^0.4.33",
"@types/electron-devtools-installer": "^2.2.0",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/styled-components": "^5.1.7",
"@types/webpack": "^4.41.26",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-loader": "^8.2.2",
"css-loader": "^4.3.0",
"electron": "^11.2.3",
"electron-devtools-installer": "^3.1.1",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-react": "^7.22.0",
"fork-ts-checker-webpack-plugin": "^5.0.14",
"husky": "^4.3.8",
"less": "^3.13.1",
"less-loader": "^7.3.0",
"lint-staged": "^10.5.4",
"node-loader": "^1.0.1",
"postcss": "~7.0.35",
"postcss-loader": "~4.2.0",
"react-svg-loader": "^3.0.3",
"style-loader": "^1.3.0",
"tailwindcss": "npm:@tailwindcss/[email protected]",
"ts-loader": "^8.0.15",
"typescript": "^4.1.3",
"url-loader": "^4.1.1"
},
"dependencies": {
"@ant-design/icons": "^4.4.0",
"@flybywiresim/fragmenter": "^0.5.2",
"@flybywiresim/react-components": "^0.2.5",
"antd": "^4.12.2",
"config-ini-parser": "~1.5.9",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^6.0.1",
"fs-extra": "^8.1.0",
"immer": "^8.0.1",
"lodash": "^4.17.20",
"marked": "^2.0.0",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-detect-offline": "^2.4.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-html-parser": "^2.0.2",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"simplebar-react": "^2.3.0",
"styled-components": "^5.2.1",
"tabler-icons-react": "~1.33.0",
"walkdir": "^0.4.1"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:fix"
]
}
}