-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 2.14 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
57
58
59
60
61
62
63
{
"name": "parent",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"applications/*",
"extensions/*",
"e2e-tests"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean && rimraf node_modules",
"format": "yarn prettier-eslint --write '**/*.{ts,tsx,js,cjs,mjs,css}' '**/package.json'",
"postinstall": "theia check:theia-version",
"lint": "lerna run lint",
"prepare": "lerna run prepare && yarn theia:bundle",
"start:browser": "yarn theia:browser start",
"start:electron": "yarn theia:electron start",
"start:verdaccio": "yarn verdaccio --config verdaccio-config.yaml",
"test": "rimraf unit-test-results && yarn run test:cjs && yarn run test:esm",
"test:cjs": "jest --config=configs/jest.config.js --passWithNoTests",
"test:esm": "yarn --cwd extensions/crossmodel-lang test",
"theia:browser": "yarn --cwd applications/browser-app",
"theia:bundle": "yarn theia:electron bundle && yarn theia:browser bundle",
"theia:electron": "yarn --cwd applications/electron-app",
"ui-test": "yarn --cwd e2e-tests ui-test",
"watch": "lerna run --parallel watch"
},
"devDependencies": {
"@testing-library/react": "^11.2.7",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.45.0",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lerna": "2.4.0",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"prettier-eslint-cli": "^8.0.1",
"prettier-plugin-packagejson": "^2.4.6",
"rimraf": "^2.6.1",
"symlink-dir": "^5.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": ">=4.9.3",
"verdaccio": "^5.23.1"
},
"engines": {
"node": ">=16",
"yarn": ">=1.7.0 <2"
}
}