forked from eclipse-glsp/glsp-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.02 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
{
"name": "parent",
"version": "2.2.0-next",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"nohoist": [
"@eclipse-glsp/workflow-test/@eclipse-glsp-examples/workflow-server-bundled"
]
},
"scripts": {
"all": "yarn clean && yarn install && yarn lint",
"build": "yarn compile && yarn compile:alias",
"check:headers": "glsp checkHeaders . -t lastCommit",
"check:pr": "yarn all && yarn check:headers",
"clean": "lerna run clean",
"compile": "tsc -b",
"compile:alias": "lerna run compile:alias",
"example": "yarn --cwd ./examples/workflow-test",
"generate:index": "lerna run generate:index && yarn lint:fix",
"lint": "eslint --ext .ts,.tsx --ignore-pattern '**/repositories/**' .",
"lint:ci": "yarn lint --output-file eslint_report.json --format json",
"lint:fix": " yarn lint --fix",
"prepare": "lerna run prepare && yarn build",
"publish:latest": "lerna publish from-git --no-push",
"publish:next": "lerna publish preminor --exact --canary --preid next --dist-tag next --no-git-tag-version --no-push --ignore-scripts --yes",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push --exact",
"repo": "yarn example repo",
"test": "cd examples/workflow-test && yarn test",
"test:standalone": "yarn example test:standalone",
"test:theia": "yarn example test:theia",
"test:vscode": "yarn example test:vscode",
"test:vscode-setup": "yarn example test:vscode-setup",
"watch": "concurrently --kill-others -n tsc,alias -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"yarn --cwd packages/glsp-playwright watch:alias\""
},
"devDependencies": {
"@eclipse-glsp/dev": "next",
"@estruyf/github-actions-reporter": "^1.7.0",
"@types/node": "16.x",
"concurrently": "^8.2.2",
"eslint-import-resolver-typescript": "^3.5.3",
"lerna": "^7.4.1",
"tsc-alias": "1.8.10",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.11.0",
"yarn": ">=1.7.0 <2.x.x"
}
}