forked from eclipse-emfcloud/coffee-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.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
{
"private": true,
"name": "coffee-editor-client-parent",
"description": "Eclipse EMF.cloud Coffee Editor Client Parent",
"version": "0.0.0",
"engines": {
"yarn": ">=1.7.0",
"node": ">=14.18.0"
},
"license": "(EPL-2.0 OR MIT)",
"contributors": [
{
"name": "Eclipse EMF.cloud Project",
"email": "[email protected]",
"url": "https://projects.eclipse.org/projects/ecd.emfcloud"
}
],
"repository": {
"type": "git",
"url": "https://github.com/eclipse-emfcloud/coffee-editor.git"
},
"homepage": "https://www.eclipse.org/emfcloud/",
"bugs": "https://github.com/eclipse-emfcloud/coffee-editor/issues",
"scripts": {
"prepare": "lerna run prepare && yarn build:extension",
"build:extension": "cd coffee-workflow-analyzer-editor && yarn",
"rebuild:browser": "theia rebuild:browser",
"production": "yarn --cwd browser-app production",
"development": "yarn --cwd browser-app development",
"copy:servers": "yarn --cwd coffee-servers copy:servers",
"watch": "lerna run --parallel watch",
"lint": "lerna run lint",
"start": "yarn --cwd browser-app start",
"start:debug": "yarn --cwd browser-app start:debug",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push"
},
"devDependencies": {
"@eclipse-glsp/config": "^1.0.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "16.x",
"fs-extra": "^10.1.0",
"lerna": "^6.0.0",
"ts-node": "^10.8.1",
"typescript": "~4.5.5"
},
"workspaces": {
"packages": [
"browser-app",
"coffee-common",
"coffee-comparison",
"coffee-cpp-extension",
"coffee-editor-extension",
"coffee-java-extension",
"coffee-servers",
"coffee-welcome-page",
"coffee-workflow-analyzer",
"coffee-workflow-glsp",
"coffee-workflow-glsp-theia"
]
}
}