-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1684 from ever-co/develop
Release
- Loading branch information
Showing
14 changed files
with
160 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
18.18.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
18.18.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,42 @@ | ||
{ | ||
"name": "@ever-teams/extensions", | ||
"displayName": "Ever Teams", | ||
"version": "0.1.0", | ||
"description": "Ever Teams Browser Extensions", | ||
"license": "UNLICENSED", | ||
"author": "Ever Co. LTD", | ||
"scripts": { | ||
"dev": "yarn plasmo dev", | ||
"start": "yarn dev", | ||
"build": "yarn plasmo build" | ||
}, | ||
"dependencies": { | ||
"@tailwindcss/forms": "^0.5.3", | ||
"@tailwindcss/typography": "^0.5.8", | ||
"classnames": "^2.3.2", | ||
"plasmo": "^0.59.1", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-timer-hook": "^3.0.5", | ||
"tailwindcss": "^3.2.4" | ||
}, | ||
"devDependencies": { | ||
"@plasmohq/prettier-plugin-sort-imports": "^3.6.0", | ||
"@types/chrome": "^0.0.203", | ||
"@types/node": "18.8.3", | ||
"@types/react": "18.0.21", | ||
"@types/react-dom": "18.0.6", | ||
"postcss": "^8.4.19", | ||
"prettier": "^2.8.0", | ||
"typescript": "4.8.4" | ||
}, | ||
"manifest": { | ||
"host_permissions": [ | ||
"https://*/*" | ||
] | ||
} | ||
"name": "@ever-teams/extensions", | ||
"displayName": "Ever Teams", | ||
"version": "0.1.0", | ||
"description": "Ever Teams Browser Extensions", | ||
"license": "UNLICENSED", | ||
"author": "Ever Co. LTD", | ||
"scripts": { | ||
"dev": "yarn plasmo dev", | ||
"start": "yarn dev", | ||
"build": "yarn plasmo build" | ||
}, | ||
"dependencies": { | ||
"@tailwindcss/forms": "^0.5.3", | ||
"@tailwindcss/typography": "^0.5.8", | ||
"classnames": "^2.3.2", | ||
"plasmo": "^0.59.1", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-timer-hook": "^3.0.5", | ||
"tailwindcss": "^3.2.4" | ||
}, | ||
"devDependencies": { | ||
"@plasmohq/prettier-plugin-sort-imports": "^3.6.0", | ||
"@types/chrome": "^0.0.203", | ||
"@types/node": "18.8.3", | ||
"@types/react": "18.0.21", | ||
"@types/react-dom": "18.0.6", | ||
"postcss": "^8.4.19", | ||
"prettier": "^2.8.0", | ||
"typescript": "4.8.4" | ||
}, | ||
"manifest": { | ||
"host_permissions": [ | ||
"https://*/*" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"yarn": ">=1.13.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# NOTE: do NOT ever put here any secure settings! (e.g. Secret Keys) | ||
# We are using react-native-dotenv (.env) | ||
|
||
GAUZY_API_URL= | ||
INVITE_CALLBACK_URL=https://app.ever.team/passcode | ||
|
||
GAUZY_API_URL=https://api.gauzy.co | ||
INVITE_CALLBACK_URL=https://app.ever.team/auth/passcode | ||
EXPO_PUBLIC_SENTRY_DSN= | ||
SENTRY_ORG= | ||
SENTRY_PROJECT= | ||
SENTRY_ORG=ever-co | ||
SENTRY_PROJECT=ever-teams-mobile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ export const INVITE_CALLBACK_URL = process.env.INVITE_CALLBACK_URL; | |
export const INVITE_CALLBACK_PATH = '/auth/passcode'; | ||
export const VERIFY_EMAIL_CALLBACK_URL = process.env.VERIFY_EMAIL_CALLBACK_URL; | ||
export const VERIFY_EMAIL_CALLBACK_PATH = '/verify-email'; | ||
export const GA_MEASUREMENT_ID = process.env.NEXT_PUBLIC_GA_MEASUREMENT_ID | ||
|
||
export const SMTP_FROM_ADDRESS = process.env.SMTP_FROM_ADDRESS || '[email protected]'; | ||
export const SMTP_HOST = process.env.SMTP_HOST || ''; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.