-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
56 lines (56 loc) · 1.74 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
{
"name": "parent",
"version": "2.3.0",
"private": true,
"homepage": "https://www.eclipse.org/glsp/",
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-glsp/glsp-examples.git"
},
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR MIT)",
"author": {
"name": "Eclipse GLSP"
},
"contributors": [
{
"name": "Eclipse GLSP Project",
"email": "[email protected]",
"url": "https://projects.eclipse.org/projects/ecd.glsp"
}
],
"workspaces": [
"workflow-glsp",
"workflow-theia",
"workflow-browser-app",
"workflow-server"
],
"scripts": {
"all": "yarn clean && yarn build && yarn lint",
"browser": "yarn --cwd workflow-browser-app",
"build": "yarn compile && yarn bundle",
"bundle": "yarn server bundle && yarn browser bundle",
"check:theia-version": "theia check:theia-version",
"clean": "lerna run clean",
"compile": "tsc -b",
"lint": "eslint --ext .ts,.tsx .",
"lint:ci": "yarn lint --output-file eslint_report.json --format json",
"prepare": "yarn build && yarn check:theia-version",
"server": "yarn --cwd workflow-server",
"start": "yarn browser start",
"start:external": "yarn browser start:external",
"start:server": "yarn server start",
"watch": "concurrently --kill-others -n tsc,browser,server -c red,yellow,green \"tsc -b -w --preserveWatchOutput\" \"yarn -s browser watch\" \"yarn -s server watch:bundle\""
},
"devDependencies": {
"@eclipse-glsp/config": "2.3.0",
"@types/node": "18.x",
"concurrently": "^8.2.2",
"lerna": "^8.1.7",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18",
"yarn": ">=1.7.0 <2"
}
}