forked from AgoraIO-Community/Agora-Electron-Quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 961 Bytes
/
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
{
"name": "electron-webpack-quick-start",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"write-config": "node ./scripts/writeAppId.js",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"dependencies": {
"agora-electron-sdk": "^2.0.8-rc.5",
"bulma": "^0.7.1",
"immutable": "^3.8.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"source-map-support": "^0.5.9"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"electron": "^4.0.0",
"electron-builder": "^20.38.5",
"electron-webpack": "^2.3.1",
"webpack": "^4.17.1"
},
"resolutions": {
"webpack-sources": "1.0.1"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.renderer.additions.js"
}
}
}