enso/package.json
somebody1234 34f34cf0ad
Remove incorrect dependencies in the root package.json (#8023)
Removes dependencies that should not be in the root `package.json`
Basic testing done with `npm run ci-check`.

Introduced by the following PRs (in order of being merged):
See blame for more details: https://github.com/enso-org/enso/blame/develop/package.json
- #7813
- #7656 (oops)
- #7881

# Important Notes
None
2023-10-11 16:24:22 +00:00

30 lines
722 B
JSON

{
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0"
},
"dependencies": {
"chromedriver": "^106.0.1",
"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"
}
}