-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.66 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
{
"name": "remote-workspace",
"version": "0.1.31",
"description": "",
"repository": "https://github.com/makeflow/remote-workspace.git",
"author": "Chengdu Mufan Technology Co., Ltd.",
"license": "MIT",
"bin": {
"remote-workspace-server": "bld/server/main.js",
"remote-workspace": "bld/client-host/main.js"
},
"scripts": {
"update-tsconfigs": "ts-node --project scripts/tsconfig.json scripts/update-tsconfigs.ts",
"build-ts": "tsc --build",
"watch:client": "parcel watch --out-dir bld/client src/client/index.html --public-url /static/",
"build:client": "parcel build --out-dir bld/client src/client/index.html --public-url /static/",
"build": "yarn build-ts && yarn build:client",
"lint-ts": "ts-node --project scripts/tsconfig.json scripts/lint-ts.ts",
"lint-prettier": "prettier --check \"**/*.{ts,tsx,js,jsx,json,yml,md}\"",
"lint": "yarn lint-prettier && yarn lint-ts",
"test": "rimraf bld && yarn build && yarn lint"
},
"files": [
"src/**/*.ts",
"bld",
"!*.tsbuildinfo"
],
"dependencies": {
"@hapi/h2o2": "^9.1.0",
"@hapi/hapi": "^20.1.4",
"@hapi/inert": "^6.0.3",
"@hapi/vision": "^6.1.0",
"antd": "^4.16.2",
"boring-cache": "^0.1.5",
"boring-router": "^0.4.6",
"boring-router-react": "^0.4.0",
"chalk": "^3.0.0",
"classnames": "^2.2.6",
"find-process": "^1.4.2",
"fs-extra": "^8.1.0",
"get-port": "^5.0.0",
"http-proxy-agent": "^4.0.1",
"hyphenate": "^0.2.5",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"main-function": "^0.1.2",
"md5": "^2.2.1",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"node-fetch": "^2.6.0",
"open": "^6.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"shell-quote": "^1.7.2",
"strip-json-comments": "^3.0.1",
"tslang": "^0.1.17",
"uuid": "^3.3.3",
"villa": "^0.3.1"
},
"devDependencies": {
"@magicspace/configs": "0.1.49",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/hapi__h2o2": "^8.3.2",
"@types/hapi__hapi": "^20.0.8",
"@types/hapi__inert": "^5.2.2",
"@types/hapi__vision": "^5.5.2",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.138",
"@types/node": "^12.7.5",
"@types/node-fetch": "^2.5.1",
"@types/prettier": "^1.18.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/shell-quote": "^1.6.1",
"@types/uuid": "^3.4.5",
"glob": "^7.1.4",
"parcel-bundler": "^1.12.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"tslint": "^6.1.3",
"typescript": "^4.3.4",
"typescript-tslint-plugin": "^1.0.1"
}
}