forked from getstation/electron-process-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "electron-process-manager",
"version": "1.0.0",
"description": "Process manager UI for Electron applications",
"repository": "getstation/electron-process-manager",
"main": "src/index.js",
"scripts": {
"dev": "webpack -d --watch",
"build": "webpack",
"example": "npm run build && electron example",
"test": "npm run build && node tests/test.js",
"prepare": "npm run build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"bluebird": "^3.7.1",
"bluebird-extra": "^2.0.0",
"electron": "^7.0.0",
"electron-default-menu": "1.0.1",
"filesize": "^5.0.3",
"format-number": "^3.0.0",
"object-path": "^0.11.4",
"prop-types": "^15.5.10",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"spectron": "^9.0.0",
"webpack": "^2.5.1"
},
"peerDependencies": {
"electron": "^7.0.0"
},
"dependencies": {
"electron-process-reporter": "^1.4.0"
}
}