-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 KB
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
{
"private": true,
"name": "client-parent",
"version": "0.7.0",
"engines": {
"yarn": ">=1.7.0",
"node": ">=14"
},
"license": "(EPL-2.0 OR MIT)",
"author": {
"name": "Eclipse emf.cloud Project"
},
"homepage": "https://www.eclipse.org/emfcloud/",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-emfcloud/modelserver-glsp-integration"
},
"bugs": "https://github.com/eclipse-emfcloud/modelserver-glsp-integration/issues",
"contributors": [
{
"name": "Eclipse emf.cloud Project",
"email": "emfcloud-dev@eclipse.org",
"url": "https://projects.eclipse.org/projects/ecd.emfcloud"
}
],
"scripts": {
"prepare": "lerna run prepare",
"watch": "lerna run --parallel watch",
"build": "yarn simpleInstall && lerna run build",
"lint": "lerna run lint --",
"simpleInstall": "yarn install --ignore-scripts",
"rebuild:browser": "theia rebuild:browser",
"start": "yarn rebuild:browser && yarn --cwd tasklist-browser-app start",
"start:external": "yarn rebuild:browser && yarn --cwd tasklist-browser-app start:external",
"upgrade:latest": "lerna run upgrade:latest"
},
"devDependencies": {
"@eclipse-glsp/config": "^1.0.0",
"@types/node": "14.x",
"lerna": "^6.0.0",
"npm-check-updates": "^16.10.8",
"typescript": "~4.5.5"
},
"workspaces": [
"tasklist-glsp",
"tasklist-theia",
"tasklist-browser-app"
]
}