enso/app/ide-desktop/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

48 lines
1.3 KiB
JSON

{
"name": "enso-ide-desktop",
"version": "1.0.0",
"type": "module",
"author": {
"name": "Enso Team",
"email": "contact@enso.org"
},
"homepage": "https://github.com/enso-org/enso",
"repository": {
"type": "git",
"url": "git@github.com:enso-org/enso.git"
},
"bugs": {
"url": "https://github.com/enso-org/enso/issues"
},
"private": true,
"devDependencies": {
"@types/node": "^20.11.21",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"eslint-plugin-jsdoc": "^46.8.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-check": "^3.15.0",
"globals": "^14.0.0",
"typescript": "^5.5.3",
"vite": "^5.3.3"
},
"scripts": {
"dev": "npm run watch --workspace enso-content",
"typecheck": "tsc -p lib/types/tsconfig.json",
"lint-only": "eslint .",
"lint": "npm run --workspace=enso-gui2 compile-server && npm run lint-only"
},
"dependencies": {
"@stripe/react-stripe-js": "^2.3.1",
"@stripe/stripe-js": "^2.1.10",
"esbuild-plugin-inline-image": "^0.0.9",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0"
}
}