forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 872 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 872 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
{
"name": "overmind-devtools",
"version": "1.0.0-alpha1",
"description": "Overmind devtool",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"license": "MIT",
"repository": "git+https://github.com/cerebral/overmind.git",
"bin": {
"overmind-devtools": "bin.js"
},
"scripts": {
"start": "electron ./src/main",
"prod": "NODE_ENV=production electron ./src/main --not-packaged=true",
"build": "rimraf devtoolsDist && cp -R ../overmind-devtools-client/dist devtoolsDist"
},
"keywords": [
"overmind",
"devtool"
],
"dependencies": {
"color": "^3.0.0",
"color-hash": "^1.0.3",
"electron": "^8.0.0",
"electron-json-storage": "^4.1.8",
"electron-prompt": "^1.5.1",
"overmind-devtools-client": "next",
"ws": "^7.0.0"
},
"devDependencies": {
"@types/node": "^12.11.6",
"@babel/plugin-proposal-class-properties": "^7.3.4"
}
}