-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "micboard",
"version": "0.8.5",
"description": "An intelligent mic tray for ethernet enabled Shure microphones.",
"main": "main.js",
"scripts": {
"server": "python py/micboard.py",
"binary": "pyinstaller py/micboard.spec",
"build": "node node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack.config.js",
"app": "electron .",
"pack": "node electron-build.js",
"dist": "electron-builder",
"static": "python -m http.server 8058"
},
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/karlcswanson/micboard.git"
},
"author": "[email protected]",
"bugs": {
"url": "https://github.com/karlcswanson/micboard/issues"
},
"homepage": "https://github.com/karlcswanson/micboard",
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@ibm/plex": "^1.4.1",
"@shopify/draggable": "^1.0.0-beta.8",
"babel-loader": "^8.0.6",
"bootstrap": "^4.3.1",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"jquery": "^3.4.1",
"node-gyp": "^4.0.0",
"node-sass": "^4.12.0",
"popper.js": "^1.15.0",
"qrcode": "^1.4.1",
"sass-loader": "^7.3.1",
"smoothie": "^1.35.0",
"style-loader": "^0.23.1",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"electron": "^5.0.10",
"electron-builder": "^20.44.4"
}
}