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
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 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
51
52
53
54
{
"name": "action-chain",
"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\" \"parcel watch client/index.html\"",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch --updateSnapshot",
"prepublishOnly": "npm run build",
"posttest": "npm run typecheck && npm run lint"
},
"keywords": [
"overmind",
"devtool"
],
"dependencies": {
"@types/node": "^10.5.1",
"electron": "^2.0.4"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"dts-bundle": "^0.7.3",
"eslint": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-typescript": "^0.12.0",
"jest-cli": "^23.2.0",
"pascal-case": "^2.0.1",
"prettier": "^1.13.7",
"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",
"typescript-eslint-parser": "^16.0.1"
}
}