-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.61 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
{
"private": true,
"license": "(EPL-2.0 OR MIT)",
"scripts": {
"prepare": "lerna run prepare",
"rebuild:browser": "theia rebuild:browser",
"watch": "lerna run --parallel watch",
"lint": "lerna run lint",
"start": "cd browser-app && yarn start",
"debug": "cd browser-app && yarn debug"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-loader": "8.0.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"lerna": "^2.11.0",
"typescript": "^4.2.3"
},
"workspaces": {
"packages": [
"browser-app",
"configs",
"ecore-editor-extension/",
"coffee-server/"
]
},
"resolutions": {
"**/@theia/application-manager": "1.20.0",
"**/@theia/application-package": "1.20.0",
"**/@theia/callhierarchy": "1.20.0",
"**/@theia/cli": "1.20.0",
"**/@theia/console": "1.20.0",
"**/@theia/core": "1.20.0",
"**/@theia/debug": "1.20.0",
"**/@theia/editor": "1.20.0",
"**/@theia/file-search": "1.20.0",
"**/@theia/filesystem": "1.20.0",
"**/@theia/git": "1.20.0",
"**/@theia/keymaps": "1.20.0",
"**/@theia/markers": "1.20.0",
"**/@theia/messages": "1.20.0",
"**/@theia/mini-browser": "1.20.0",
"**/@theia/monaco": "1.20.0",
"**/@theia/navigator": "1.20.0",
"**/@theia/outline-view": "1.20.0",
"**/@theia/output": "1.20.0",
"**/@theia/plugin-dev": "1.20.0",
"**/@theia/plugin-ext": "1.20.0",
"**/@theia/plugin-ext-vscode": "1.20.0",
"**/@theia/plugin-metrics": "1.20.0",
"**/@theia/preferences": "1.20.0",
"**/@theia/process": "1.20.0",
"**/@theia/scm": "1.20.0",
"**/@theia/scm-extra": "1.20.0",
"**/@theia/search-in-workspace": "1.20.0",
"**/@theia/task": "1.20.0",
"**/@theia/terminal": "1.20.0",
"**/@theia/typehierarchy": "1.20.0",
"**/@theia/userstorage": "1.20.0",
"**/@theia/variable-resolver": "1.20.0",
"**/@theia/vsx-registry": "1.20.0",
"**/@theia/workspace": "1.20.0",
"**/@eclipse-glsp/client": "0.9.0",
"**/@eclipse-glsp/protocol": "0.9.0",
"**/@eclipse-glsp/theia-integration": "0.9.0",
"**/@eclipse-emfcloud/modelserver-theia": "0.8.0-next.bfd82e29",
"**/@eclipse-emfcloud/theia-tree-editor": "0.7.0-next.1cc6a31",
"**/inversify": "5.1.1",
"**/sprotty": "0.10.0",
"**/sprotty-theia": "0.10.0"
}
}