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
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 KB
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
42
43
44
45
46
47
48
49
50
{
"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",
"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.4",
"electron-json-storage": "^4.1.0",
"overmind-react": "next",
"overmind-themes": "next",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"styled-components": "^3.3.3",
"ws": "^5.2.1"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"jest": "^23.5.0",
"ts-jest": "^23.0.0",
"ts-loader": "^4.4.2",
"tslib": "^1.9.3",
"typescript": "^2.9.2",
"url-loader": "^1.0.1",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8"
}
}