forked from emuflight/Nemesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·134 lines (134 loc) · 3.97 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
{
"name": "Nemesis",
"version": "0.1.0",
"author": {
"name": "EmuFlight",
"email": "emuflightofficial@gmail.com",
"url": "https://github.com/emuflight/"
},
"homepage": "./",
"description": "Nemesis EmuFlight-UI",
"main": "public/electron.js",
"repository": "https://github.com/emuflight/Nemesis",
"buildDependenciesFromSource": true,
"nodeGypRebuild": false,
"npmRebuild": false,
"build": {
"extraResources": "public/server/utils/dfu/**/*",
"appId": "com.emuflight.nemesis",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public/assets"
},
"dmg": {
"background": "public/assets/dmg-background.png",
"contents": [
{
"x": 180,
"y": 590
},
{
"x": 570,
"y": 570,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Lifestyle",
"packageCategory": "Lifestyle",
"icon": "./public/assets",
"desktop": {
"Encoding": "UTF-8"
},
"target": [
"AppImage",
"deb",
"rpm"
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"installerIcon": "build/assets/icon.ico"
}
},
"dependencies": {
"@connectedyard/node-intelhex": "^1.2.4",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"ajv": "^6.12.6",
"electron-context-menu": "^0.10.0",
"electron-updater": "^4.3.5",
"express": "^4.16.4",
"express-fileupload": "^1.0.0",
"node-hid": "^0.7.9",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-easy-chart": "^1.0.0",
"react-grid-layout": "^0.16.6",
"react-intl": "^2.9.0",
"react-markdown": "^3.6.0",
"react-scripts": "1.1.5",
"react-text-mask": "^5.4.3",
"serialport": "^7.0.2",
"usb": "^1.6.1",
"websocket": "^1.0.28",
"yarn": "^1.22.10"
},
"lint-staged": {
"{{public,src}/**/*.{scss,js,json},package.json}": [
"prettier --write \"{{public,src}/**/*.{scss,js,json},package.json}\"",
"git add"
]
},
"scripts": {
"install": "electron-rebuild -w serialport,usb,node-hid,node-sass -f",
"preship": "yarn build && yarn build-css",
"ship": "build --win --ia32 --x64 -p always",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"pretty": "prettier --write \"{{public,src}/**/*.{css,scss,js,json},package.json}\"",
"precommit": "lint-staged",
"electron-dev": "concurrently \"yarn watch-css\" \"export BROWSER=none && yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-dev-win": "concurrently \"yarn watch-css\" \"set BROWSER=none&&yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "electron-builder --dir",
"electron-pack-win": "electron-builder --dir",
"electron-pack-lin": "yarn build && build -l",
"preelectron-pack": "yarn build && yarn build-css",
"dist": "electron-builder"
},
"devDependencies": {
"concurrently": "3.5.0",
"electron": "^4.2.12",
"electron-builder": "^22.7.0",
"electron-packager": "12.2.0",
"electron-react-devtools": "^0.5.3",
"electron-rebuild": "1.8.2",
"husky": "0.14.3",
"lint-staged": "7.3.0",
"node-sass-chokidar": "0.0.3",
"prettier": "1.14.3",
"three": "^0.97.0",
"three-stl-loader": "^1.0.6",
"wait-on": "3.1.0"
},
"darwinDependencies": {
"usb": "github:tessel/node-usb#2961e948d93bec0cdd1908c03e3f1f98dfd3fd44",
"node-hid": "^0.7.3"
},
"win32Dependencies": {
"usb": "github:tessel/node-usb#2961e948d93bec0cdd1908c03e3f1f98dfd3fd44",
"node-hid": "^0.7.3"
}
}