-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·108 lines (108 loc) · 3.49 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
{
"name": "Pegasus",
"version": "0.2.1",
"author": "Helio RC, LLC",
"homepage": "https://www.heliorc.com",
"description": "Pegagus Multi-Firmware-UI",
"main": "public/electron.js",
"repository": "https://github.com/heliorc/pegasus-ui",
"buildDependenciesFromSource": true,
"nodeGypRebuild": false,
"npmRebuild": false,
"build": {
"extraResources": "public/server/utils/dfu/**/*",
"appId": "com.pegasus",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public/assets"
},
"mac": {
"category": "public.app-category.lifestyle",
"target": [
"zip",
"dmg"
]
},
"linux": {
"category": "Lifestyle",
"packageCategory": "Lifestyle",
"icon": "./public/assets",
"desktop": {
"Encoding": "UTF-8"
}
}
},
"dependencies": {
"@connectedyard/node-intelhex": "^1.2.4",
"@material-ui/core": "^3.2.2",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.20",
"electron-context-menu": "^0.10.0",
"electron-updater": "^3.1.2",
"express": "^4.16.4",
"express-fileupload": "^1.0.0",
"material-ui-slider": "^3.0.0",
"node-hid": "^0.7.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-easy-chart": "^1.0.0",
"react-grid-layout": "^0.16.6",
"react-intl": "^2.7.1",
"react-markdown": "^3.6.0",
"react-scripts": "1.1.5",
"react-text-mask": "^5.4.3",
"serialport": "^7.0.2",
"three": "^0.97.0",
"three-stl-loader": "^1.0.6",
"usb": "github:tessel/node-usb#2961e948d93bec0cdd1908c03e3f1f98dfd3fd44",
"websocket": "^1.0.28"
},
"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": "build --mac",
"electron-pack-win": "yarn build && build --win --ia32 --x64",
"electron-pack-lin": "yarn build && build -l",
"preelectron-pack": "yarn build && yarn build-css"
},
"devDependencies": {
"concurrently": "3.5.0",
"electron": "3.0.5",
"electron-builder": "20.28.4",
"electron-packager": "12.2.0",
"electron-rebuild": "1.8.2",
"husky": "0.14.3",
"lint-staged": "7.3.0",
"node-sass-chokidar": "0.0.3",
"prettier": "1.14.3",
"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"
}
}