enso/app/ide-desktop/package.json
Dmitry Bushev 79e20adcc0
Local dashboard shouldn't be showing system files (#10072)
close #10071

Changelog:
- update: `--filesystem-list` command to filter the hidden files
- update: project manager shim middleware to filter the hidden fiels
2024-05-29 09:26:35 +00:00

43 lines
1.2 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": {
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"cross-env": "^7.0.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"
},
"scripts": {
"dev": "npm run watch --workspace enso-content",
"typecheck": "npx 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",
"is-hidden-file": "^1.1.2"
}
}