-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
46 lines (46 loc) · 1.77 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
{
"name": "parent",
"version": "2.4.0-next",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"all": "yarn clean && yarn install && yarn lint && yarn test",
"build": "yarn compile && yarn bundle",
"bundle": "yarn standalone bundle",
"check:headers": "glsp checkHeaders . -t lastCommit",
"check:pr": "yarn all && yarn check:headers",
"clean": "lerna run clean && rimraf coverage .nyc_output",
"compile": "tsc -b",
"generate:index": "lerna run generate:index && yarn lint:fix",
"lint": "eslint --ext .ts,.tsx .",
"lint:ci": "yarn lint -o eslint.xml -f checkstyle",
"lint:fix": " yarn lint --fix",
"prepare": "yarn build",
"publish:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --no-push",
"publish:next": "lerna publish preminor --exact --canary --preid next --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"standalone": "yarn --cwd ./examples/workflow-standalone",
"start:exampleServer": "yarn standalone start:exampleServer",
"test": "lerna run test --no-bail",
"test:ci": "lerna run test:ci --no-bail",
"test:coverage": "lerna run test:coverage",
"test:coverage:ci": "yarn glsp coverageReport .",
"upgrade:next": "glsp updateNext",
"watch": "concurrently --kill-others -n tsc,standalone -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"yarn -s standalone watch:bundle\""
},
"devDependencies": {
"@eclipse-glsp/dev": "next",
"@types/lodash": "4.14.191",
"@types/node": "18.x",
"concurrently": "^8.2.2",
"lerna": "^7.1.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18",
"yarn": ">=1.7.0 <2"
}
}