-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.78 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
{
"private": true,
"engines": {
"yarn": "1.0.x || >=1.2.1",
"node": ">=16.0.0 <18"
},
"scripts": {
"prepare": "lerna run prepare",
"build": "lerna run build",
"lint": "lerna run lint --",
"lint:fix": "yarn lint --fix",
"rebuild:browser": "theia rebuild:browser",
"rebuild:electron": "theia rebuild:electron",
"example": "yarn --cwd example/browser-app start",
"watch": "lerna run --parallel watch",
"test": "lerna run test",
"publish:prepare": "lerna version --no-private --ignore-scripts --yes --no-push",
"publish": "yarn && yarn publish:latest",
"publish:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --no-verify-access --ignore-scripts --no-push",
"publish:next": "SHA=$(git rev-parse --short HEAD) && lerna publish preminor --exact --canary --preid next.${SHA} --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes --no-verify-access"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^6.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"@comment workspaces": [
"We do not add 'example/electron-app' to the workspaces as it requires X11/Xvfb which is not available on our Eclipse Jenkins CI by default.",
"For more information, see https://github.com/electron/electron/blob/master/docs/tutorial/testing-on-headless-ci.md."
],
"workspaces": [
"theia-tree-editor",
"example/browser-app",
"example/tree-editor-example"
]
}