enso/app/ide-desktop/package.json
Paweł Buchowski 6f29262f90
Cognito auth 2/7 - add authorization app (#5798)
2nd PR for IDE/Cloud authorization with cognito. This PR introduces boilerplate react app + some amplify code to fetch the access token + username of the currently logged in user, if they are already authenticated.

Registration + Login + Set Username + Forgot Password flows are to be added in next PRs to keep the changes reviewable.
2023-03-15 11:54:16 +00:00

43 lines
1.0 KiB
JSON

{
"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"
},
"name": "root",
"private": true,
"workspaces": [
"lib/client",
"lib/common",
"lib/content",
"lib/dashboard",
"lib/dashboard/src/authentication",
"lib/content-config",
"lib/copy-plugin",
"lib/icons",
"lib/server"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-plugin-jsdoc": "^40.0.2",
"patch-package": "^6.4.7"
},
"scripts": {
"dev": "PORT=8081 npm exec --workspace enso-dashboard -- react-scripts start",
"watch": "npm run watch --workspace enso-content",
"postinstall": "patch-package"
}
}