2020-07-21 15:59:40 +03:00
|
|
|
{
|
|
|
|
"devDependencies": {
|
2023-09-22 06:43:25 +03:00
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"prettier": "^3.0.0"
|
2022-10-04 05:51:27 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-01-27 03:09:09 +03:00
|
|
|
"chromedriver": "^106.0.1",
|
2023-09-22 06:43:25 +03:00
|
|
|
"tslib": "^2.6.2"
|
|
|
|
},
|
|
|
|
"name": "root",
|
|
|
|
"scripts": {
|
|
|
|
"format": "prettier --write .",
|
|
|
|
"prettier": "prettier --check .",
|
|
|
|
"lint": "npm --workspaces --if-present run lint",
|
|
|
|
"test": "npm --workspaces --if-present run test",
|
|
|
|
"typecheck": "npm --workspaces --if-present run typecheck",
|
|
|
|
"ci-check": "run-p test prettier lint typecheck"
|
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"app/ide-desktop",
|
|
|
|
"app/ide-desktop/lib/*",
|
|
|
|
"app/ide-desktop/lib/dashboard/src/authentication",
|
|
|
|
"app/gui2",
|
|
|
|
"lib/rust/ensogl/pack/js"
|
|
|
|
],
|
|
|
|
"overrides": {
|
|
|
|
"tslib": "$tslib"
|
2020-07-21 15:59:40 +03:00
|
|
|
}
|
|
|
|
}
|