forked from rbrahul/desktop-app-using-electron-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 986 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 986 Bytes
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
{
"name": "taskmanager",
"version": "1.0.0",
"description": "Task Manager software built with electron",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-packager . --platform=linux --arch=x64 --ignore=node_modules --out dist/",
"deb64": "electron-installer-debian --src dist/taskmanager-linux-x64/ --dest dist/installers/ --arch amd64 --config config.json"
},
"keywords": [
"electron",
"first",
"app"
],
"author": {
"name":"Rahul Baruri Ripan",
"url":"https://github.com/rbrahul"
},
"license": "MIT",
"dependencies": {
"fbemitter": "^2.0.2",
"flux": "^2.1.1",
"react": "^0.14.7",
"react-dom": "^0.14.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1"
},
"devDependencies": {
"babel-core": "5.8.*",
"babel-loader": "5.3.*",
"electron-installer-debian": "^0.3.0",
"electron-packager": "^7.0.3",
"electron-prebuilt": "^0.36.0",
"webpack": "1.12.*"
}
}