-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.87 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
{
"private": true,
"license": "(EPL-2.0 OR MIT)",
"engines": {
"yarn": "1.0.x || >=1.2.1",
"node": "^14.15.0 || >=16.0.0"
},
"scripts": {
"prepare": "lerna run prepare",
"watch": "lerna run --parallel watch",
"build": "lerna run build",
"lint": "lerna run lint --",
"lint:fix": "yarn lint --fix",
"rebuild:browser": "theia rebuild:browser",
"test": "lerna run test",
"test:ci": "export JUNIT_REPORT_PATH=./mocha-jenkins-report.xml && lerna run test:ci",
"publish:prepare": "lerna version --no-private --ignore-scripts --yes --no-push",
"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",
"start": "yarn rebuild:browser && yarn --cwd examples/browser-app start",
"upgrade:theia": "yarn upgrade -p \"@theia/.*\"",
"download:server": "yarn --cwd examples/coffee-theia download:server"
},
"devDependencies": {
"@babel/runtime": "^7.16.3",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"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",
"mocha": "^9.1.3",
"mocha-jenkins-reporter": "^0.4.7",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"ts-node": "^10.8.1",
"typescript": "^4.6.3"
},
"workspaces": [
"packages/*",
"examples/*"
]
}