-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.21 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
{
"name": "media_hub",
"license": "MIT",
"author": "Aditya Shridhar Hegde <adishegde@gmail.com>",
"version": "0.1.3",
"licence": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "MH_ENV=development ELECTRON_DISABLE_SECURITY_WARNINGS=true electron --port=5858 .",
"watch": "MH_ENV=development webpack --mode=development && webpack-dev-server --mode=development --content-base dist/ --inline --port 1234",
"bundle": "webpack --mode=production",
"build-cli": "babel src --ignore src/app -d cli-build",
"start-prod": "electron .",
"package": "electron-builder --dir",
"dist": "electron-builder",
"publish": "build --mac --win --linux -p always"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"cli-progress": "^2.0.0",
"cli-table": "^0.3.1",
"commander": "^2.15.1",
"css-loader": "^0.28.11",
"electron": "^2.0.3",
"electron-builder": "^20.24.4",
"electron-devtools-installer": "^2.2.4",
"electron-updater": "^3.0.3",
"eslint": "^4.19.1",
"file-loader": "^1.1.11",
"fuse.js": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"level": "^4.0.0",
"mime-types": "^2.1.18",
"node-cleanup": "^2.1.2",
"node-sass": "^4.9.0",
"pkg": "^4.3.3",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.0.3",
"semantic-ui-css": "^2.3.2",
"semantic-ui-react": "^0.81.2",
"style-loader": "^0.21.0",
"unused-filename": "^1.0.0",
"url-loader": "^1.0.1",
"uuid": "^3.2.1",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-node-externals": "^1.7.2",
"winston": "^3.0.0-rc5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"main": "app/index.js",
"description": "Tool for sharing files over LAN",
"dependencies": {
"chokidar": "^2.0.4",
"level": "^4.0.0"
},
"build": {
"appId": "com.electron.mediahub",
"productName": "Media Hub",
"files": [
"app/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.productivity",
"icon": "src/app/assets/logo/512 Black.png"
},
"win": {
"target": [
"nsis"
],
"icon": "src/app/assets/logo/512 Black.png"
},
"linux": {
"target": [
"deb",
"AppImage"
],
"icon": "src/app/assets/logo/512 Black.png"
}
}
}