mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 18:12:31 +03:00
5e1a3124dc
- Adds a download button in the user menu # Important Notes - The "upgrade to" button will be absent when the user already has a plan, as the only place where an "upgrade to" button shows up is the cloud view, when the user's account has not yet been enabled. - The upgrade button currently links to https://enso.org/pricing - which does not yet exist. This is intentional, as another PR would be required to switch the URL, if we were to initially point to the one at https://enso-org.github.io. - The pricing page would still not work, as that requires payment functionality, which is not yet complete
57 lines
1.8 KiB
JSON
57 lines
1.8 KiB
JSON
{
|
|
"name": "enso-dashboard",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"typecheck": "tsc",
|
|
"build": "tsx bundle.ts",
|
|
"dev": "tsx watch.ts",
|
|
"start": "tsx start.ts",
|
|
"test": "npm run test:unit",
|
|
"test:unit": "playwright test",
|
|
"test:browsers": "npx --yes playwright install && npm run test:component && npm run test:e2e-and-log",
|
|
"test:component": "playwright test -c playwright-component.config.ts",
|
|
"test:e2e": "npx playwright test -c playwright-e2e.config.ts",
|
|
"test:e2e-and-log": "npm run test:e2e || npx tsx log-screenshot-diffs.ts"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.0.15",
|
|
"@sentry/react": "^7.74.0",
|
|
"esbuild": "^0.19.3",
|
|
"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",
|
|
"@modyfi/vite-plugin-yaml": "^1.0.4",
|
|
"@playwright/experimental-ct-react": "^1.38.0",
|
|
"@playwright/test": "^1.38.0",
|
|
"@types/node": "^18.17.5",
|
|
"@types/react": "^18.0.27",
|
|
"@types/react-dom": "^18.0.10",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.2",
|
|
"@typescript-eslint/parser": "^6.7.2",
|
|
"chalk": "^5.3.0",
|
|
"enso-authentication": "^1.0.0",
|
|
"enso-chat": "git://github.com/enso-org/enso-bot",
|
|
"enso-content": "^1.0.0",
|
|
"esbuild-plugin-inline-image": "^0.0.9",
|
|
"eslint": "^8.49.0",
|
|
"eslint-plugin-jsdoc": "^46.8.1",
|
|
"eslint-plugin-react": "^7.32.1",
|
|
"playwright": "^1.38.0",
|
|
"react-toastify": "^9.1.3",
|
|
"tailwindcss": "^3.2.7",
|
|
"tsx": "^3.12.6",
|
|
"typescript": "~5.2.2"
|
|
},
|
|
"optionalDependencies": {
|
|
"@esbuild/darwin-x64": "^0.17.15",
|
|
"@esbuild/linux-x64": "^0.17.15",
|
|
"@esbuild/windows-x64": "^0.17.15"
|
|
}
|
|
}
|