-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 KB
/
package.json
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
55
56
57
58
59
60
61
62
63
{
"name": "@custody/cli",
"version": "0.10.0",
"description": "A developer-oriented frontend for Supervisor",
"bin": {
"custody-cli": "bin/custody-cli/index.js"
},
"main": "dist/index.js",
"files": [
"bin",
"dist"
],
"repository": "https://github.com/mixmaxhq/custody",
"author": "Jeff Wear <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "bin/custody-cli.js",
"build": "[ \"$WATCH\" == 'true' ] && rollup -cw || rollup -c",
"watch": "WATCH=true npm run build",
"prepare": "npm run build"
},
"dependencies": {
"@mixmaxhq/blessed": "^0.1.82",
"@mixmaxhq/tail": "^1.3.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"fuzzy": "^0.1.3",
"history": "^4.9.0",
"ini": "^1.3.5",
"kexec": "^3.0.0",
"lodash.xor": "^4.5.0",
"memoize-one": "^4.0.2",
"mkdirp": "^0.5.1",
"node-notifier": "^5.2.1",
"npm-root": "^1.1.0",
"opn": "^5.4.0",
"promise-callbacks": "^3.1.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-blessed": "^0.3.0",
"readline-sync": "^1.4.9",
"sanitize-filename": "^1.6.1",
"semver": "^6.3.0",
"supervisord": "^0.1.0",
"underscore": "^1.9.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-core": "^6.26.2",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"eslint": ">=4.14.0",
"eslint-config-mixmax": "^1.0.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-root-import": "^0.2.2"
}
}