-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "biu",
"version": "0.3.0-alpha.2",
"description": "The command-line task hub.",
"bin": {
"biu": "bld/cli/main.js"
},
"scripts": {
"lint-cli": "tslint -c src/cli/tslint.json -p src/cli/tsconfig.json",
"lint-client": "tslint -c src/client/tslint.json -p src/client/tsconfig.json",
"lint": "yarn lint-cli && yarn lint-client",
"build-cli": "yarn lint-cli && rimraf bld/cli && tsc -p src/cli/tsconfig.json",
"build-client": "yarn lint-client && rimraf bld/client && parcel build src/client/index.html --out-dir bld/client",
"build": "yarn build-cli && yarn build-client",
"start-cli": "node bld/cli/main.js",
"start-client": "parcel serve src/client/index.html --port 8089 --out-dir bld/client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeflow/biu.git"
},
"keywords": [
"command-line",
"command",
"cli",
"multiple",
"hub"
],
"author": "vilicvane",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeflow/biu/issues"
},
"homepage": "https://github.com/makeflow/biu#readme",
"files": [
"bld/cli/**/*.js",
"bld/client/**"
],
"dependencies": {
"@makeflow/mobx-utils": "^0.1.0",
"ansi-to-html": "^0.6.6",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"classnames": "^2.2.6",
"clime": "^0.5.9",
"color": "^3.0.0",
"components": "^0.1.0",
"express": "^4.16.3",
"lodash": "^4.17.11",
"mobx": "^5.1.0",
"mobx-react": "^5.2.8",
"npm-which": "^3.0.1",
"open": "0.0.5",
"prettier": "^1.14.2",
"rc-dropdown": "^2.2.0",
"react": "^15.3.0 || 16",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^15.3.0 || 16",
"react-fa": "^5.0.0",
"react-flip-move": "^3.0.2",
"react-mosaic": "^0.0.20",
"react-mosaic-component": "^1.1.1",
"react-scroll-horizontal": "^1.5.1",
"shell-escape": "^0.2.0",
"socket.io": "^2.1.1",
"source-map-support": "^0.5.6",
"strip-color": "^0.1.0",
"styled-components": "^3.4.6",
"tslib": "^1.9.3",
"villa": "^0.3.1"
},
"devDependencies": {
"@magicspace/configs": "^0.1.29",
"@types/chalk": "^2.2.0",
"@types/chokidar": "^1.7.5",
"@types/classnames": "^2.2.6",
"@types/color": "^3.0.0",
"@types/express": "^4.16.0",
"@types/lodash": "^4.14.116",
"@types/node": "^10.5.7",
"@types/react": "^16.4.14",
"@types/react-custom-scrollbars": "^4.0.5",
"@types/react-dom": "^16.0.7",
"@types/react-fa": "^4.1.5",
"@types/socket.io": "^1.4.36",
"@types/socket.io-client": "^1.4.32",
"babel-preset-react": "^6.24.1",
"dot-template-types": "^0.0.7",
"parcel-bundler": "^1.9.7",
"parcel-plugin-typescript": "^1.0.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.0.1"
}
}