enso/package.json
Michael Mauderer 7c68bf170d
Remove gui1 codebase (#9242)
Removes the old GUI1 code base and reduces the Rust code footprint by removing unused code.

# Important Notes
Updates build scripts and reformats part of the codebase with the autoformatter.
2024-03-07 02:20:21 +00:00

29 lines
664 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/gui2",
"lib/rust/enso-pack/js"
],
"overrides": {
"tslib": "$tslib"
}
}