mirror of
https://github.com/graphql-hive/console
synced 2026-05-09 02:10:47 +00:00
* add supertoken container to docker-compose file * yeah I am sorry this one big commit and I am ashamed of it * use logOut function * feat: show header on 404 page * feat: better handling for organization cookie when not authenticated * wrap it * check session within server side props * add is_admin flag user migration * simplify and annotate the config * fix: handle status codes + fix email/password sign up with import from auth0 * no hardcoded env pls * decode process.env * secure update user id mapping via a key * fix: login form * lol we don't need to hit the API * fix: do graphql api authorization via authorization header instead of cookie * implement isAdmin flag * fix: types :) * skipit * yo we can run this * set env variables * disable because it annoys the hell out of me * use the right host * add not about token length * refactor: decode environment variables * feat: store external user id from guthub/google provider in the database * workaround supertokens omitting null values from the token * re-enable check * i have no time for this shit * add missing env variable * fix: email test; missing domain extension * configure pulumi deployment Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: Dotan Simha <dotansimha@gmail.com> * configure pulumi deployment Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: Dotan Simha <dotansimha@gmail.com> * configure pulumi deployment Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: Dotan Simha <dotansimha@gmail.com> * configure pulumi deployment Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> * fix: env names * fix: link google account to the correct db record * feat: email confirmation emails * ? * bump ts-node * fix types * omit package form the bundle * remove it from dependencies... * add emails apckage to dev deps * resolve eslint issues * remove comments * update dev info + change env variable (no need to expose it on the frontend) * use correct user id lol Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: Dotan Simha <dotansimha@gmail.com>
26 lines
774 B
JSON
26 lines
774 B
JSON
{
|
|
"name": "integration-tests",
|
|
"type": "module",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"dependencies": {
|
|
"@app/gql": "link:./testkit/gql",
|
|
"@graphql-typed-document-node/core": "3.1.1",
|
|
"auth0": "2.36.2",
|
|
"axios": "0.27.2",
|
|
"dotenv": "10.0.0",
|
|
"date-fns": "2.25.0",
|
|
"dependency-graph": "0.11.0",
|
|
"dockest": "npm:@n1ru4l/dockest@2.1.0-rc.6",
|
|
"rxjs": "^6.5.4",
|
|
"slonik": "30.1.2",
|
|
"tsup": "5.12.7",
|
|
"yaml": "2.1.0",
|
|
"cross-undici-fetch": "0.4.3",
|
|
"zod": "3.15.1"
|
|
},
|
|
"scripts": {
|
|
"build-and-pack": "(cd ../ && yarn build:services && yarn build:libraries && yarn build:local-cdn) && node ./scripts/pack.mjs",
|
|
"dockest": "tsup-node dockest.ts --format esm --target node16 && node dist/dockest.js"
|
|
}
|
|
}
|