forked from uffou/MixCloud-Play
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.48 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": "MixCloud-Play",
"version": "0.9.1",
"description": "The desktop client MixCloud",
"author": {
"name": "Codemotion Ltd."
},
"license": "UNLICENSED",
"scripts": {
"start": "electron .",
"build": "rimraf build && webpack-cli --mode=production",
"watch": "rimraf build && webpack-cli --mode=development --watch",
"dist": "yarn build && build -m"
},
"build": {
"files": [
"build"
],
"appId": "com.codemotionapps.mixcloud",
"copyright": "Copyright © 2019 Codemotion Ltd.",
"productName": "MixCloud Play",
"mac": {
"icon": "MixCloud.icns",
"target": [
"dmg"
]
}
},
"main": "build/main.js",
"devDependencies": {
"@babel/core": "^7.0.0-rc.3",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.3",
"@babel/plugin-proposal-decorators": "^7.0.0-rc.3",
"@babel/plugin-proposal-function-bind": "^7.0.0-rc.3",
"@babel/preset-env": "^7.0.0-rc.3",
"@babel/preset-react": "^7.0.0-rc.3",
"babel-loader": "^8.0.0-beta.6",
"copy-webpack-plugin": "^4.5.2",
"electron": "2.0.8",
"electron-builder": "20.28.2",
"electron-ipc-log": "^3.0.1",
"mobx": "5.0.5",
"mobx-react": "5.2.5",
"react": "16.4.2",
"react-dom": "16.4.2",
"rimraf": "^2.6.2",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@codemotion/electron-google-analytics": "^0.0.1",
"electron-context-menu": "0.10.0",
"electron-store": "2.0.0"
}
}