enso/package.json
Paweł Grabarz 42a7cb2d23
[Gui2] Opening projects and language server connection (#7813)
# Important Notes
- Binary LS endpoint is not yet handled.
- The parsing of provided source is not entirely correct, as each line (including imports) is treated as node. The usage of actual enso AST for nodes is not yet implemented.
- Modifications to the graph state are not yet synchronized back to the language server.
2023-09-22 03:43:25 +00:00

32 lines
766 B
JSON

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