mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 18:12:31 +03:00
37d820c764
- Fixes #6168 - Removes `enso-copy-plugin` in favor of an inline plugin - It was only used in one place anyway - It is probably necessary since I've "fixed" it by adding all files as entrypoints (I'm not quite sure why it wasn't working with the fix with `enso-copy-plugin`...) - Adds live reload (back) to `content/` # Important Notes To QA: Mandatory: - `./run gui watch --skip-version-check --skip-wasm-opt` Recommended: - `npm run watch-dashboard` - `./run ide watch --skip-version-check --skip-wasm-opt --backend-source release --backend-release latest` - and with `--ide-option -authentication` - `./run ide build --skip-version-check --skip-wasm-opt --backend-source release --backend-release latest` - `Enso` and `Enso -authentication`
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "enso-dashboard",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "npx --yes eslint src",
|
|
"build": "tsx bundle.ts",
|
|
"watch": "tsx watch.ts",
|
|
"start": "tsx start.ts"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.0.15",
|
|
"@types/node": "^16.18.11",
|
|
"@types/react": "^18.0.27",
|
|
"@types/react-dom": "^18.0.10",
|
|
"esbuild": "^0.17.15",
|
|
"esbuild-plugin-time": "^1.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.49.0",
|
|
"@typescript-eslint/parser": "^5.49.0",
|
|
"enso-authentication": "^1.0.0",
|
|
"enso-content": "^1.0.0",
|
|
"eslint": "^8.32.0",
|
|
"eslint-plugin-jsdoc": "^39.6.8",
|
|
"eslint-plugin-react": "^7.32.1",
|
|
"tailwindcss": "^3.2.7",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"optionalDependencies": {
|
|
"@esbuild/darwin-x64": "^0.17.15",
|
|
"@esbuild/linux-x64": "^0.17.15",
|
|
"@esbuild/windows-x64": "^0.17.15"
|
|
}
|
|
}
|