mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 16:42:38 +03:00
31 lines
757 B
JSON
31 lines
757 B
JSON
{
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.0.0",
|
|
"vue-react-wrapper": "^0.3.1"
|
|
},
|
|
"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"
|
|
}
|
|
}
|