enso/package.json
Paweł Grabarz d9972d547a
Migrate to pnpm (#10422)
Fixes #10197

# Important Notes
From now on, package installation will be using `pnpm install`. Installing it globally is fine for convenience, but it can also be used as `corepack pnpm install` without having to install anything other than node. For now, all other scripts are still invoked using `npm`, so we can still invoke them with usual `--workspace` setting. As far as I can tell that doesn't really have any other side effects and is identical as running the script through `pnpm run` in respective workspace project subdirectory.
2024-07-05 11:13:04 +00:00

54 lines
1.3 KiB
JSON

{
"devDependencies": {
"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/ide-desktop",
"app/ide-desktop/lib/*",
"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"
}