mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 11:52:59 +03:00
ebf4cd5c1f
- Remove unnecessary modules - Remove `ts-plugin-namespace-auto-import` as it was a workaround to use the non-conventional `import *` convention - Remove `esbuild-plugin-copy-directories` as it is unuse - Inline modules that are only ever used once - Inline `project-manager-shim` into `gui2` - it is only used during `gui2`'s dev mode - Inline `content-config` into `client` - Flatten `app/ide-desktop/lib/` to `app/ide-desktop/` - Flatten `app/ide-desktop/lib/dashboard/` to `app/dashboard/` # Important Notes - As mentioned above, all remaining modules have been moved up from `app/ide-desktop/lib/` to `app/ide-desktop/`. It's not ideal but I'd rather hold off on moving them anywhere else before we have a consensus on what should go where. - (That is to say, this may not be the final directory structure - but I figure it's fine to get *something* done so that hopefully the rest of the restructuring is simpler.)
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"devDependencies": {
|
|
"eslint-plugin-jsdoc": "^48.2.12",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"globals": "^15.8.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.3.2"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "^2.6.3",
|
|
"typescript": "^5.5.3"
|
|
},
|
|
"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/dashboard",
|
|
"app/ide-desktop/*",
|
|
"app/gui2",
|
|
"lib/js/runner"
|
|
],
|
|
"pnpm": {
|
|
"overrides": {
|
|
"tslib": "$tslib",
|
|
"jsdom": "^24.1.0",
|
|
"@types/react": "^18.0.27",
|
|
"react-native": "./_IGNORED_",
|
|
"react-native-url-polyfill": "./_IGNORED_",
|
|
"react-native-get-random-values": "./_IGNORED_"
|
|
},
|
|
"packageExtensions": {
|
|
"@aws-amplify/auth": {
|
|
"dependencies": {
|
|
"@aws-crypto/sha256-js": "*"
|
|
}
|
|
},
|
|
"ag-grid-enterprise": {
|
|
"dependencies": {
|
|
"ag-grid-community": "*"
|
|
}
|
|
},
|
|
"@open-rpc/client-js": {
|
|
"dependencies": {
|
|
"events": "^3.3.0"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"packageManager": "pnpm@9.4.0+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74"
|
|
}
|