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
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"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 ./src/backend/main\" \"parcel watch src/client/index.html\"",
"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",
"electron": "^2.0.4"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"dts-bundle": "^0.7.3",
"jest": "^23.3.0",
"pascal-case": "^2.0.1",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"ts-jest": "^23.0.0",
"typescript": "^2.9.2"
}
}