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
37 lines (37 loc) · 965 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 965 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": "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": "concurrently \"electron ./backend/main\" \"webpack-dev-server --port 3000\"",
"build": "webpack",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand",
"test:watch": "jest --watch --updateSnapshot --coverage false",
"prepare": "npm run build",
"posttest": "npm run typecheck"
},
"keywords": [
"overmind",
"devtool"
],
"dependencies": {
"@types/node": "^10.5.1",
"color": "^3.0.0",
"color-hash": "^1.0.3",
"electron": "^2.0.8",
"electron-json-storage": "^4.1.0",
"overmind-react": "next",
"react": "16.8.1",
"react-dom": "16.8.1",
"overmind-themes": "next",
"emotion": "^9.2.12",
"ws": "^5.2.1"
}
}