-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 990 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 990 Bytes
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
{
"private": true,
"name": "tasklist-browser-app",
"version": "0.1.0",
"dependencies": {
"@theia/core": "^1.37.1",
"@theia/editor": "^1.37.1",
"@theia/filesystem": "^1.37.1",
"@theia/markers": "^1.37.1",
"@theia/messages": "^1.37.1",
"@theia/monaco": "^1.37.1",
"@theia/navigator": "^1.37.1",
"@theia/preferences": "^1.37.1",
"@theia/process": "^1.37.1",
"@theia/terminal": "^1.37.1",
"@theia/workspace": "^1.37.1",
"@eclipse-emfcloud/tasklist-theia": "0.7.0"
},
"devDependencies": {
"@theia/cli": "^1.37.1"
},
"scripts": {
"prepare": "yarn build",
"build": "theia build --mode development",
"start": "theia start --TASKLIST_GLSP=5007 --root-dir=../workspace",
"start:external": "theia start --TASKLIST_GLSP=5007 --root-dir=../workspace --debug",
"watch": "theia build --watch --mode development",
"upgrade:latest": "ncu @theia* --target @latest -u"
},
"theia": {
"target": "browser"
}
}