-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.12 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
{
"private": true,
"version": "0.0.3",
"license": "EPL-2.0",
"author": "Ben Klein <[email protected]>",
"homepage": "https://github.com/CodeRibbon/CodeRibbon-Theia",
"bugs": {
"url": "https://github.com/CodeRibbon/CodeRibbon-Theia/issues"
},
"scripts": {
"clean": "lerna run clean && rimraf node_modules",
"build": "lerna run build",
"prepare": "lerna run prepare --concurrency 1",
"watch": "lerna run --parallel watch",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"bundle": "lerna run bundle",
"test": "lerna run test",
"browser": "yarn --cwd applications/browser",
"electron": "yarn --cwd applications/electron",
"download:plugins": "theia download:plugins --rate-limit=15 --parallel=false --ignore-errors"
},
"devDependencies": {
"@theia/cli": "1.46.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"concurrently": "^3.5.0",
"eslint": "^7.27.0",
"eslint-plugin-deprecation": "1.2.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^3.1.5",
"eslint-plugin-react": "^7.23.2",
"lerna": "^6.0.1",
"prettier": "2.8.8",
"rimraf": "^2.7.1",
"ts-node": "^10.0.0",
"tslint": "^5.12.0",
"type-fest": "^0.20.2",
"yargs": "17.2.1"
},
"workspaces": [
"coderibbon-theia",
"applications/*"
],
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"vscode.git": "https://open-vsx.org/api/vscode/git/1.83.1/file/vscode.git-1.83.1.vsix",
"vscode.markdown-language-features": "https://open-vsx.org/api/vscode/markdown-language-features/1.83.1/file/vscode.markdown-language-features-1.83.1.vsix",
"vscode-builtin-extensions-pack": "https://open-vsx.org/api/eclipse-theia/builtin-extension-pack/1.83.1/file/eclipse-theia.builtin-extension-pack-1.83.1.vsix"
},
"theiaPluginsExcludeIds": [
"vscode.extension-editing",
"vscode.microsoft-authentication",
"ms-vscode.js-debug-companion",
"VisualStudioExptTeam.vscodeintellicode"
]
}