forked from eclipse-theia/theia-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
{
"private": true,
"version": "1.36.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Rob Moran <github@thegecko.org>",
"homepage": "https://github.com/eclipse-theia/theia-blueprint#readme",
"bugs": {
"url": "https://github.com/eclipse-theia/theia/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-theia/theia-blueprint.git"
},
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=12.14.1"
},
"devDependencies": {
"@theia/cli": "1.36.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-plugin-deprecation": "1.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^3.1.5",
"eslint-plugin-react": "^7.23.2",
"lerna": "^6.0.1",
"rimraf": "^2.7.1",
"ts-node": "^10.0.0",
"type-fest": "^0.20.2",
"yargs": "17.2.1"
},
"scripts": {
"prepare": "lerna run prepare --concurrency 1",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"clean": "lerna run clean && rimraf node_modules",
"build": "lerna run build",
"bundle": "lerna run bundle",
"watch": "lerna run --parallel watch",
"test": "lerna run test",
"electron": "yarn --cwd applications/electron",
"browser": "yarn --cwd applications/browser",
"update:next": "ts-node scripts/update-theia-to-next.ts && lerna run update:next"
},
"workspaces": [
"applications/*",
"theia-extensions/*"
],
"resolutions": {
"**/multer": "1.4.4-lts.1"
}
}