-
Notifications
You must be signed in to change notification settings - Fork 21
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 #148 from CommonsBuild/dev
Praise v0.0.1
- Loading branch information
Showing
2,215 changed files
with
95,131 additions
and
7,070 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,4 @@ | ||
## Environment ## | ||
NODE_ENV=development | ||
|
||
## Server ## | ||
PORT=8088 | ||
HOST=localhost | ||
|
||
## Admin accounts ## | ||
ADMINS=0x123..123,0x123..123 | ||
|
||
## Frontend ## | ||
FRONTEND_URL=http://localhost:3000 | ||
|
||
## Database ## | ||
MONGO_DB=mongodb://localhost:27017/praise_db | ||
|
||
## Authentication ## | ||
COOKIE_DOMAIN=localhost | ||
COOKIE_PATH=/ | ||
SECURE_COOKIE=false | ||
JWT_SECRET=xxxxxxxxxxxxxx | ||
COOKIE_SECRET=xxxxxxxxxxxxxx | ||
# expires in 3 days | ||
COOKIE_EXP=259200000 | ||
|
||
## Setup jet-logger ## | ||
JET_LOGGER_MODE=CONSOLE | ||
JET_LOGGER_FILEPATH=jet-logger.log | ||
JET_LOGGER_TIMESTAMP=TRUE | ||
JET_LOGGER_FORMAT=LINE | ||
|
||
## Settings ## | ||
NAME = Praise | ||
DESCRIPTION = This is Praise system | ||
LOGO = | ||
|
||
PRAISE_QUANTIFIERS_PER_PRAISE_RECEIVER = 3 | ||
PRAISE_QUANTIFIERS_PER_PRAISE_RECEIVER_TOLERANCE = 1.2 | ||
PRAISE_PER_QUANTIFIER = 50 | ||
PRAISE_QUANTIFY_RECEIVER_PSEUDONYMS = false | ||
PRAISE_QUANTIFY_DUPLICATE_PRAISE_PERCENTAGE = 0.1 | ||
|
||
## Discord ## | ||
DISCORD_TOKEN = | ||
DISCORD_CLIENT_ID= | ||
DISCORD_ACTIVATION = | ||
DISCORD_MESSAGE = | ||
DISCORD_LOGO = | ||
DISCORD_GUILD_ID= | ||
PRAISE_GIVER_ROLE_ID= | ||
|
||
## Telegram ## | ||
TELEGRAM_ACTIVATION = | ||
TELEGRAM_MESSAGE = | ||
TELEGRAM_LOGO = | ||
MONGO_INITDB_ROOT_USERNAME= | ||
MONGO_INITDB_ROOT_PASSWORD= | ||
MONGO_DB_USER= | ||
MONGO_DB_PASSWORD= |
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,104 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
commonjs: true, | ||
es6: true, | ||
node: true, | ||
}, | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaVersion: 2018, | ||
tsconfigRootDir: __dirname, | ||
sourceType: 'module', | ||
project: ['./packages/*/tsconfig.json'], | ||
}, | ||
plugins: ['@typescript-eslint', 'node', 'import', 'prettier'], | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/eslint-recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:@typescript-eslint/recommended-requiring-type-checking', | ||
'plugin:node/recommended', | ||
'plugin:import/recommended', | ||
'plugin:import/typescript', | ||
'prettier', | ||
], | ||
globals: { | ||
Atomics: 'readonly', | ||
SharedArrayBuffer: 'readonly', | ||
}, | ||
ignorePatterns: ['dist', 'scripts'], | ||
rules: { | ||
'import/no-unresolved': 'error', | ||
'prettier/prettier': 'error', | ||
'block-scoped-var': 'error', | ||
eqeqeq: 'error', | ||
'no-var': 'error', | ||
'prefer-const': 'error', | ||
'eol-last': 'error', | ||
'prefer-arrow-callback': 'error', | ||
'no-trailing-spaces': 'error', | ||
quotes: ['warn', 'single', { avoidEscape: true }], | ||
'no-restricted-properties': [ | ||
'error', | ||
{ | ||
object: 'describe', | ||
property: 'only', | ||
}, | ||
{ | ||
object: 'it', | ||
property: 'only', | ||
}, | ||
], | ||
}, | ||
settings: { | ||
'import/extensions': ['.ts', '.tsx'], | ||
'import/parsers': { | ||
'@typescript-eslint/parser': ['.ts', '.tsx'], | ||
}, | ||
'import/resolver': { | ||
node: { | ||
extensions: ['.ts', '.tsx'], | ||
}, | ||
typescript: { | ||
alwaysTryTypes: true, | ||
project: './tsconfig.json', | ||
}, | ||
}, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['**/*.ts', '**/*.tsx'], | ||
parser: '@typescript-eslint/parser', | ||
extends: ['plugin:@typescript-eslint/recommended'], | ||
rules: { | ||
'@typescript-eslint/no-non-null-assertion': 'warn', | ||
'@typescript-eslint/no-use-before-define': 'warn', | ||
'@typescript-eslint/no-warning-comments': 'off', | ||
'@typescript-eslint/no-empty-function': 'off', | ||
'@typescript-eslint/no-var-requires': 'error', | ||
'@typescript-eslint/explicit-function-return-type': 'warn', | ||
'@typescript-eslint/explicit-module-boundary-types': 'warn', | ||
'@typescript-eslint/ban-types': 'off', | ||
'@typescript-eslint/camelcase': 'off', | ||
'@typescript-eslint/no-unsafe-member-access': 'off', | ||
'@typescript-eslint/no-unsafe-assignment': 'off', | ||
'@typescript-eslint/no-unsafe-argument': 'off', | ||
'@typescript-eslint/no-unsafe-return': 'off', | ||
'@typescript-eslint/no-unsafe-call': 'off', | ||
'node/no-missing-import': 'off', | ||
'node/no-empty-function': 'off', | ||
'node/no-unsupported-features/es-syntax': 'off', | ||
'node/no-missing-require': 'off', | ||
'node/shebang': 'warn', | ||
'no-dupe-class-members': 'off', | ||
'require-atomic-updates': 'off', | ||
'import/no-default-export': 'error', | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 2018, | ||
sourceType: 'module', | ||
}, | ||
}, | ||
], | ||
}; |
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
node_modules | ||
|
||
.env | ||
.DS_Store | ||
|
||
dist | ||
node_modules | ||
.yarn/* | ||
!.yarn/cache | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
.env | ||
|
||
jet-logger.log | ||
yarn-error.log |
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 @@ | ||
v16.13.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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"useTabs": false | ||
} | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"endOfLine": "auto" | ||
} |
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,31 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Launch Chrome, attach", | ||
"port": 9222, | ||
"request": "launch", | ||
"type": "pwa-chrome", | ||
"webRoot": "${workspaceFolder}" | ||
}, | ||
{ | ||
"name": "Launch API", | ||
"type": "node-terminal", | ||
"request": "launch", | ||
"command": "yarn workspace api start:dev", | ||
"smartStep": false | ||
}, | ||
{ | ||
"name": "Launch DISCORD BOT", | ||
"type": "node-terminal", | ||
"request": "launch", | ||
"command": "yarn workspace discord-bot start:dev", | ||
"smartStep": false | ||
}, | ||
{ | ||
"name": "Launch FRONTEND", | ||
"type": "node-terminal", | ||
"request": "launch", | ||
"command": "yarn workspace frontend start" | ||
} | ||
] | ||
} |
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,16 @@ | ||
{ | ||
"eslint.workingDirectories": [ | ||
{ | ||
"directory": "./packages/api", | ||
"changeProcessCWD": true | ||
}, | ||
{ | ||
"directory": "./packages/discord-bot", | ||
"changeProcessCWD": true | ||
}, | ||
{ | ||
"directory": "./packages/frontend", | ||
"changeProcessCWD": true | ||
} | ||
] | ||
} |
Binary file added
BIN
+23.7 KB
.yarn/cache/@ampproject-remapping-npm-2.1.2-d1536e36d6-e023f92cdd.zip
Binary file not shown.
Binary file added
BIN
+29.9 KB
.yarn/cache/@apideck-better-ajv-errors-npm-0.3.3-e329339741-2d9ffaa422.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+20.6 KB
.yarn/cache/@babel-eslint-parser-npm-7.17.0-c28cb5c02e-1cedd9998d.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.74 KB
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.16.7-75d26b1e4c-d235be963f.zip
Binary file not shown.
Binary file added
BIN
+3.18 KB
...el-helper-builder-binary-assignment-operator-visitor-npm-7.16.7-fa4a09f41d-1784f19a57.zip
Binary file not shown.
Binary file added
BIN
+8.6 KB
.yarn/cache/@babel-helper-compilation-targets-npm-7.16.7-8031641957-7238aaee78.zip
Binary file not shown.
Binary file added
BIN
+15.3 KB
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.17.6-d8a5f98fb3-d85a5b3f9a.zip
Binary file not shown.
Binary file added
BIN
+4.93 KB
.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.17.0-19fb04fea1-eb66d92415.zip
Binary file not shown.
Binary file added
BIN
+65.7 KB
.yarn/cache/@babel-helper-define-polyfill-provider-npm-0.3.1-7c6efdf410-e3e93cb22f.zip
Binary file not shown.
Binary file added
BIN
+2.88 KB
.yarn/cache/@babel-helper-environment-visitor-npm-7.16.7-3ee2ba2019-c03a10105d.zip
Binary file not shown.
Binary file added
BIN
+3.29 KB
.yarn/cache/@babel-helper-explode-assignable-expression-npm-7.16.7-29ba312670-ea2135ba36.zip
Binary file not shown.
Binary file added
BIN
+3.79 KB
.yarn/cache/@babel-helper-function-name-npm-7.16.7-aa24c7b296-fc77cbe7b1.zip
Binary file not shown.
Binary file added
BIN
+2.66 KB
.yarn/cache/@babel-helper-get-function-arity-npm-7.16.7-987b1b1bed-25d969fb20.zip
Binary file not shown.
Binary file added
BIN
+2.98 KB
.yarn/cache/@babel-helper-hoist-variables-npm-7.16.7-25cc3abba4-6ae1641f4a.zip
Binary file not shown.
Binary file added
BIN
+15.3 KB
...n/cache/@babel-helper-member-expression-to-functions-npm-7.16.7-56558bdc63-e275378022.zip
Binary file not shown.
Binary file added
BIN
+6.12 KB
.yarn/cache/@babel-helper-module-imports-npm-7.16.7-19c74fd92b-ddd2c4a600.zip
Binary file not shown.
Binary file added
BIN
+12.2 KB
.yarn/cache/@babel-helper-module-transforms-npm-7.17.6-4c0dcc3d6b-f372275441.zip
Binary file not shown.
Binary file added
BIN
+2.88 KB
.yarn/cache/@babel-helper-optimise-call-expression-npm-7.16.7-27e4a63d42-925feb877d.zip
Binary file not shown.
Binary file added
BIN
+3.31 KB
.yarn/cache/@babel-helper-plugin-utils-npm-7.16.7-9e572698e0-d08dd86554.zip
Binary file not shown.
Binary file added
BIN
+3.22 KB
.yarn/cache/@babel-helper-remap-async-to-generator-npm-7.16.8-9a3804d4f8-29282ee368.zip
Binary file not shown.
Binary file added
BIN
+4.19 KB
.yarn/cache/@babel-helper-replace-supers-npm-7.16.7-a3d7cf1544-e5c0b6eb3d.zip
Binary file not shown.
Binary file added
BIN
+3.23 KB
.yarn/cache/@babel-helper-simple-access-npm-7.16.7-c4dfb1f5e7-8d22c46c5e.zip
Binary file not shown.
Binary file added
BIN
+3 KB
...e/@babel-helper-skip-transparent-expression-wrappers-npm-7.16.0-caad6e8361-b9ed2896eb.zip
Binary file not shown.
Binary file added
BIN
+3.15 KB
.yarn/cache/@babel-helper-split-export-declaration-npm-7.16.7-5b9ae90171-e10aaf1354.zip
Binary file not shown.
Binary file added
BIN
+9.07 KB
.yarn/cache/@babel-helper-validator-identifier-npm-7.16.7-8599fb00fc-dbb3db9d18.zip
Binary file not shown.
Binary file added
BIN
+3.82 KB
.yarn/cache/@babel-helper-validator-option-npm-7.16.7-d13e9c1d9e-c5ccc45191.zip
Binary file not shown.
Binary file added
BIN
+3.37 KB
.yarn/cache/@babel-helper-wrap-function-npm-7.16.8-6f134e6cd3-d8aae4baca.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.46 KB
...ri-id-destructuring-collision-in-function-expression-npm-7.16.7-6dd7fba95d-bbb0f82a4c.zip
Binary file not shown.
Binary file added
BIN
+5.83 KB
...gin-bugfix-v8-spread-parameters-in-optional-chaining-npm-7.16.7-03f7cda86b-81b372651a.zip
Binary file not shown.
Binary file added
BIN
+4.6 KB
...che/@babel-plugin-proposal-async-generator-functions-npm-7.16.8-69b50b5a7c-abd2c2c67d.zip
Binary file not shown.
Binary file added
BIN
+3.01 KB
.yarn/cache/@babel-plugin-proposal-class-properties-npm-7.16.7-a687cd42c3-3977e841e1.zip
Binary file not shown.
Binary file added
BIN
+3.45 KB
.yarn/cache/@babel-plugin-proposal-class-static-block-npm-7.17.6-2a7dd9802d-0ef00d73b4.zip
Binary file not shown.
Binary file added
BIN
+13.8 KB
.yarn/cache/@babel-plugin-proposal-decorators-npm-7.17.2-d02fa71040-da5424d51e.zip
Binary file not shown.
Binary file added
BIN
+3.14 KB
.yarn/cache/@babel-plugin-proposal-dynamic-import-npm-7.16.7-c8dcbf7085-5992012484.zip
Binary file not shown.
Binary file added
BIN
+3.29 KB
...n/cache/@babel-plugin-proposal-export-namespace-from-npm-7.16.7-a284b3fed9-5016079a53.zip
Binary file not shown.
Binary file added
BIN
+3.09 KB
.yarn/cache/@babel-plugin-proposal-json-strings-npm-7.16.7-6050225322-ea6487918f.zip
Binary file not shown.
Binary file added
BIN
+3.4 KB
.../@babel-plugin-proposal-logical-assignment-operators-npm-7.16.7-c5b5395f79-c4cf18e10f.zip
Binary file not shown.
Binary file added
BIN
+3.4 KB
...e/@babel-plugin-proposal-nullish-coalescing-operator-npm-7.16.7-45af3f7fdc-bfafc27016.zip
Binary file not shown.
Binary file added
BIN
+3.05 KB
.yarn/cache/@babel-plugin-proposal-numeric-separator-npm-7.16.7-e445f742d7-8e2fb0b328.zip
Binary file not shown.
Binary file added
BIN
+21.9 KB
.yarn/cache/@babel-plugin-proposal-object-rest-spread-npm-7.17.3-67908ab634-02810f158d.zip
Binary file not shown.
Binary file added
BIN
+3.03 KB
.../cache/@babel-plugin-proposal-optional-catch-binding-npm-7.16.7-8ab736f892-4a422bb19a.zip
Binary file not shown.
Binary file added
BIN
+10.9 KB
.yarn/cache/@babel-plugin-proposal-optional-chaining-npm-7.16.7-f479fd3c81-e4a6c1ac7e.zip
Binary file not shown.
Binary file added
BIN
+2.93 KB
.yarn/cache/@babel-plugin-proposal-private-methods-npm-7.16.11-7bea0c364e-b333e5aa91.zip
Binary file not shown.
Binary file added
BIN
+4.18 KB
...he/@babel-plugin-proposal-private-property-in-object-npm-7.16.7-0c73fbde73-666d668f51.zip
Binary file not shown.
Binary file added
BIN
+3.11 KB
.../cache/@babel-plugin-proposal-unicode-property-regex-npm-7.16.7-2fc47231f9-2b8a33713d.zip
Binary file not shown.
Binary file added
BIN
+2.73 KB
.yarn/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-7ed1c1d9b9.zip
Binary file not shown.
Binary file added
BIN
+2.59 KB
.yarn/cache/@babel-plugin-syntax-bigint-npm-7.8.3-b05d971e6c-3a10849d83.zip
Binary file not shown.
Binary file added
BIN
+2.76 KB
.yarn/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-24f34b196d.zip
Binary file not shown.
Binary file added
BIN
+2.83 KB
.yarn/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-3e80814b5b.zip
Binary file not shown.
Binary file added
BIN
+3.11 KB
.yarn/cache/@babel-plugin-syntax-decorators-npm-7.17.0-a8f72f6525-745a3553c8.zip
Binary file not shown.
Binary file added
BIN
+2.69 KB
.yarn/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-ce307af83c.zip
Binary file not shown.
Binary file added
BIN
+2.83 KB
.yarn/cache/@babel-plugin-syntax-export-namespace-from-npm-7.8.3-1747201aa9-85740478be.zip
Binary file not shown.
Binary file added
BIN
+2.8 KB
.yarn/cache/@babel-plugin-syntax-flow-npm-7.16.7-fcb87696ac-b1ab0bd9b7.zip
Binary file not shown.
Binary file added
BIN
+2.71 KB
.yarn/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-166ac1125d.zip
Binary file not shown.
Binary file added
BIN
+2.75 KB
.yarn/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-bf5aea1f31.zip
Binary file not shown.
Binary file added
BIN
+2.65 KB
.yarn/cache/@babel-plugin-syntax-jsx-npm-7.16.7-06e2646d53-cd9b0e53c5.zip
Binary file not shown.
Binary file added
BIN
+2.95 KB
...he/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-aff3357703.zip
Binary file not shown.
Binary file added
BIN
+2.88 KB
...ache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-87aca49189.zip
Binary file not shown.
Binary file added
BIN
+2.88 KB
.yarn/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-01ec5547bd.zip
Binary file not shown.
Binary file added
BIN
+2.75 KB
.yarn/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-fddcf581a5.zip
Binary file not shown.
Binary file added
BIN
+2.81 KB
.yarn/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-910d90e72b.zip
Binary file not shown.
Binary file added
BIN
+2.74 KB
.yarn/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-eef94d53a1.zip
Binary file not shown.
Binary file added
BIN
+2.96 KB
...ache/@babel-plugin-syntax-private-property-in-object-npm-7.14.5-ee837fdbb2-b317174783.zip
Binary file not shown.
Binary file added
BIN
+2.8 KB
.yarn/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-bbd1a56b09.zip
Binary file not shown.
Binary file added
BIN
+7.2 KB
.yarn/cache/@babel-plugin-syntax-typescript-npm-7.16.7-fcf0d6f605-661e636060.zip
Binary file not shown.
Binary file added
BIN
+2.97 KB
.yarn/cache/@babel-plugin-transform-arrow-functions-npm-7.16.7-d61043d479-2a6aa982c6.zip
Binary file not shown.
Binary file added
BIN
+3.2 KB
.yarn/cache/@babel-plugin-transform-async-to-generator-npm-7.16.8-3487d66aa2-3a2e781800.zip
Binary file not shown.
Binary file added
BIN
+3.23 KB
...cache/@babel-plugin-transform-block-scoped-functions-npm-7.16.7-58a044cde8-591e9f7543.zip
Binary file not shown.
Binary file added
BIN
+8.6 KB
.yarn/cache/@babel-plugin-transform-block-scoping-npm-7.16.7-b3f0cafea0-f93b5441af.zip
Binary file not shown.
Binary file added
BIN
+9.13 KB
.yarn/cache/@babel-plugin-transform-classes-npm-7.16.7-92bfc4a1af-791526a1bf.zip
Binary file not shown.
Binary file added
BIN
+4.04 KB
.yarn/cache/@babel-plugin-transform-computed-properties-npm-7.16.7-9a63f7f0c2-28b17f7cfe.zip
Binary file not shown.
Binary file added
BIN
+6.36 KB
.yarn/cache/@babel-plugin-transform-destructuring-npm-7.17.3-38989d9798-af58115da1.zip
Binary file not shown.
Binary file added
BIN
+2.9 KB
.yarn/cache/@babel-plugin-transform-dotall-regex-npm-7.16.7-da8c5ea826-554570dddf.zip
Binary file not shown.
Binary file added
BIN
+3.18 KB
.yarn/cache/@babel-plugin-transform-duplicate-keys-npm-7.16.7-757f34aa1c-b96f6e9f7b.zip
Binary file not shown.
Binary file added
BIN
+3.08 KB
...ache/@babel-plugin-transform-exponentiation-operator-npm-7.16.7-909d4f03ef-8082c79268.zip
Binary file not shown.
Binary file added
BIN
+3.87 KB
.yarn/cache/@babel-plugin-transform-flow-strip-types-npm-7.16.7-b89037548a-4b4801c91d.zip
Binary file not shown.
Binary file added
BIN
+6.06 KB
.yarn/cache/@babel-plugin-transform-for-of-npm-7.16.7-8f3dd5b9fe-35c9264ee4.zip
Binary file not shown.
Binary file added
BIN
+3.07 KB
.yarn/cache/@babel-plugin-transform-function-name-npm-7.16.7-e8980f9639-4d97d0b844.zip
Binary file not shown.
Binary file added
BIN
+2.83 KB
.yarn/cache/@babel-plugin-transform-literals-npm-7.16.7-abf8dc29f3-a9565d999f.zip
Binary file not shown.
Binary file added
BIN
+3.12 KB
...e/@babel-plugin-transform-member-expression-literals-npm-7.16.7-bfa68e9eb4-fdf5b22aba.zip
Binary file not shown.
Binary file added
BIN
+4.13 KB
.yarn/cache/@babel-plugin-transform-modules-amd-npm-7.16.7-4a9945db8e-9ac251ee96.zip
Binary file not shown.
Binary file added
BIN
+4.74 KB
.yarn/cache/@babel-plugin-transform-modules-commonjs-npm-7.16.8-b70dd72ac5-c0ac00f545.zip
Binary file not shown.
Binary file added
BIN
+6.33 KB
.yarn/cache/@babel-plugin-transform-modules-systemjs-npm-7.16.7-3347c4ab01-2e50ae45a7.zip
Binary file not shown.
Binary file added
BIN
+4.34 KB
.yarn/cache/@babel-plugin-transform-modules-umd-npm-7.16.7-a01f399777-d1433f8b0e.zip
Binary file not shown.
Binary file added
BIN
+3.14 KB
...@babel-plugin-transform-named-capturing-groups-regex-npm-7.16.8-753500c58b-73e149f5ff.zip
Binary file not shown.
Binary file added
BIN
+3.22 KB
.yarn/cache/@babel-plugin-transform-new-target-npm-7.16.7-5ce6b99fd8-7410c3e68a.zip
Binary file not shown.
Binary file added
BIN
+3.08 KB
.yarn/cache/@babel-plugin-transform-object-super-npm-7.16.7-6301890335-46e3c879f4.zip
Binary file not shown.
Binary file added
BIN
+7.46 KB
.yarn/cache/@babel-plugin-transform-parameters-npm-7.16.7-923943072b-4d6904376d.zip
Binary file not shown.
Binary file added
BIN
+2.99 KB
.yarn/cache/@babel-plugin-transform-property-literals-npm-7.16.7-b47430aee0-b567445899.zip
Binary file not shown.
Binary file added
BIN
+4.21 KB
...ache/@babel-plugin-transform-react-constant-elements-npm-7.17.6-aee8604c5a-4c11132851.zip
Binary file not shown.
Binary file added
BIN
+3.56 KB
.yarn/cache/@babel-plugin-transform-react-display-name-npm-7.16.7-75f0517b97-4831544136.zip
Binary file not shown.
Binary file added
BIN
+2.83 KB
.../cache/@babel-plugin-transform-react-jsx-development-npm-7.16.7-07827939b2-697c71cb0a.zip
Binary file not shown.
Binary file added
BIN
+7.98 KB
.yarn/cache/@babel-plugin-transform-react-jsx-npm-7.17.3-8d36ef35ea-7e33a3fb78.zip
Binary file not shown.
Binary file added
BIN
+3.29 KB
...cache/@babel-plugin-transform-react-pure-annotations-npm-7.16.7-dd03a4d056-715fe9c5fd.zip
Binary file not shown.
Binary file added
BIN
+2.68 KB
.yarn/cache/@babel-plugin-transform-regenerator-npm-7.16.7-af9e896245-12b1f9a4f3.zip
Binary file not shown.
Binary file added
BIN
+2.88 KB
.yarn/cache/@babel-plugin-transform-reserved-words-npm-7.16.7-b401728579-00218a646e.zip
Binary file not shown.
Binary file added
BIN
+8.06 KB
.yarn/cache/@babel-plugin-transform-runtime-npm-7.17.0-a7754eaf5c-9a469d4389.zip
Binary file not shown.
Binary file added
BIN
+3.15 KB
...n/cache/@babel-plugin-transform-shorthand-properties-npm-7.16.7-d800844ada-ca381ecf8f.zip
Binary file not shown.
Binary file added
BIN
+3.91 KB
.yarn/cache/@babel-plugin-transform-spread-npm-7.16.7-584b7c4adf-6e961af1a7.zip
Binary file not shown.
Binary file added
BIN
+2.94 KB
.yarn/cache/@babel-plugin-transform-sticky-regex-npm-7.16.7-e3085022d7-d59e20121f.zip
Binary file not shown.
Binary file added
BIN
+3.8 KB
.yarn/cache/@babel-plugin-transform-template-literals-npm-7.16.7-e82d88af58-b55a519dd8.zip
Binary file not shown.
Binary file added
BIN
+3.51 KB
.yarn/cache/@babel-plugin-transform-typeof-symbol-npm-7.16.7-c3e1f79c97-739a8c439d.zip
Binary file not shown.
Binary file added
BIN
+10.8 KB
.yarn/cache/@babel-plugin-transform-typescript-npm-7.16.8-b90e8abcf0-a76d0afcbd.zip
Binary file not shown.
Binary file added
BIN
+3.83 KB
.yarn/cache/@babel-plugin-transform-unicode-escapes-npm-7.16.7-c081a34acc-d10c3b5baa.zip
Binary file not shown.
Binary file added
BIN
+2.85 KB
.yarn/cache/@babel-plugin-transform-unicode-regex-npm-7.16.7-0a6888bf4d-ef7721cfb1.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+24.5 KB
.yarn/cache/@babel-preset-modules-npm-0.1.5-15ffcd64c2-8430e0e9e9.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.7 KB
.yarn/cache/@babel-preset-typescript-npm-7.16.7-82f6473286-44e2f3fa30.zip
Binary file not shown.
Binary file added
BIN
+187 KB
.yarn/cache/@babel-runtime-corejs3-npm-7.17.2-ea12d12360-fc7ba26191.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+44.3 KB
.yarn/cache/@cspotcode-source-map-consumer-npm-0.8.0-1f37e9e72b-c0c16ca3d2.zip
Binary file not shown.
Binary file added
BIN
+16 KB
.yarn/cache/@cspotcode-source-map-support-npm-0.7.0-456c3ea2ce-9faddda775.zip
Binary file not shown.
Binary file added
BIN
+8.21 KB
.yarn/cache/@csstools-normalize.css-npm-12.0.0-b25d07810f-fbef0f7fe4.zip
Binary file not shown.
Binary file added
BIN
+22.3 KB
.yarn/cache/@csstools-postcss-color-function-npm-1.0.3-9f9fa059f7-edb84cef52.zip
Binary file not shown.
Binary file added
BIN
+7.25 KB
.yarn/cache/@csstools-postcss-font-format-keywords-npm-1.0.0-428d96321d-4f41dccc46.zip
Binary file not shown.
Binary file added
BIN
+11.3 KB
.yarn/cache/@csstools-postcss-hwb-function-npm-1.0.0-79a8a37058-7d91ae87d4.zip
Binary file not shown.
Binary file added
BIN
+7.61 KB
.yarn/cache/@csstools-postcss-ic-unit-npm-1.0.0-a3a477691b-d194b13a66.zip
Binary file not shown.
Binary file added
BIN
+14.5 KB
.yarn/cache/@csstools-postcss-is-pseudo-class-npm-2.0.1-4aaff5a04d-6383d86710.zip
Binary file not shown.
Binary file added
BIN
+8.03 KB
.yarn/cache/@csstools-postcss-normalize-display-values-npm-1.0.0-2c171afd14-5751a171f3.zip
Binary file not shown.
Binary file added
BIN
+20.9 KB
.yarn/cache/@csstools-postcss-oklab-function-npm-1.0.2-dee91c2a42-466992d88c.zip
Binary file not shown.
Binary file added
BIN
+12.3 KB
...cache/@csstools-postcss-progressive-custom-properties-npm-1.3.0-1e56504855-e281845fde.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+25.2 KB
.yarn/cache/@discordjs-collection-npm-0.4.0-59f11c08b6-fa8fc42469.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+21.2 KB
.yarn/cache/@emotion-is-prop-valid-npm-1.1.2-fba2bc1e57-58b1f2d429.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+7.62 KB
.yarn/cache/@emotion-weak-memoize-npm-0.2.5-9f2e49e7c8-27d402b0c6.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+21.2 KB
.yarn/cache/@ethersproject-abstract-provider-npm-5.5.1-57cbb2d4b2-73ee68b232.zip
Binary file not shown.
Binary file added
BIN
+25.2 KB
.yarn/cache/@ethersproject-abstract-signer-npm-5.5.0-41e369c051-d0de55b8b4.zip
Binary file not shown.
Binary file added
BIN
+15.9 KB
.yarn/cache/@ethersproject-address-npm-5.5.0-db5f01e4bc-fa4d2b7ad6.zip
Binary file not shown.
Binary file added
BIN
+13.4 KB
.yarn/cache/@ethersproject-base64-npm-5.5.0-f778f4698b-2d0904093b.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+41.5 KB
.yarn/cache/@ethersproject-bignumber-npm-5.5.0-f593536517-b18aa58313.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+20.5 KB
.yarn/cache/@ethersproject-constants-npm-5.5.0-293066b885-20519ec5ab.zip
Binary file not shown.
Binary file added
BIN
+56.5 KB
.yarn/cache/@ethersproject-contracts-npm-5.5.0-3d6e31d73d-53b00ebf65.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+25.8 KB
.yarn/cache/@ethersproject-hdnode-npm-5.5.0-26282e53de-18c12807a8.zip
Binary file not shown.
Binary file added
BIN
+48.9 KB
.yarn/cache/@ethersproject-json-wallets-npm-5.5.0-cf931a2710-55166bcef8.zip
Binary file not shown.
Binary file added
BIN
+8.6 KB
.yarn/cache/@ethersproject-keccak256-npm-5.5.0-d95118e91c-587590c844.zip
Binary file not shown.
Binary file added
BIN
+22.3 KB
.yarn/cache/@ethersproject-logger-npm-5.5.0-132ca481cb-61d813ef8b.zip
Binary file not shown.
Binary file added
BIN
+19.3 KB
.yarn/cache/@ethersproject-networks-npm-5.5.2-a47d32c156-d6768591ac.zip
Binary file not shown.
Binary file added
BIN
+15.2 KB
.yarn/cache/@ethersproject-pbkdf2-npm-5.5.0-c81b50b238-75bb235dc0.zip
Binary file not shown.
Binary file added
BIN
+15.7 KB
.yarn/cache/@ethersproject-properties-npm-5.5.0-18e5435208-1e71a13291.zip
Binary file not shown.
Binary file added
BIN
+294 KB
.yarn/cache/@ethersproject-providers-npm-5.5.3-409a18e223-abe27d4243.zip
Binary file not shown.
Binary file added
BIN
+17.9 KB
.yarn/cache/@ethersproject-random-npm-5.5.1-3c471e4f5c-6370776554.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+60.5 KB
.yarn/cache/@ethersproject-signing-key-npm-5.5.0-4798d24a9a-28ba124eaf.zip
Binary file not shown.
Binary file added
BIN
+12.5 KB
.yarn/cache/@ethersproject-solidity-npm-5.5.0-a0da0bf9f6-f19a4ebe23.zip
Binary file not shown.
Binary file added
BIN
+44.3 KB
.yarn/cache/@ethersproject-strings-npm-5.5.0-ae10cc16e2-b17c0a3488.zip
Binary file not shown.
Binary file added
BIN
+25.8 KB
.yarn/cache/@ethersproject-transactions-npm-5.5.0-4e19d5c7f2-2de8ddb089.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+20.5 KB
.yarn/cache/@ethersproject-wallet-npm-5.5.0-dc7942491b-f7d38eb1cb.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+225 KB
.yarn/cache/@ethersproject-wordlists-npm-5.5.0-049e2c27d2-3eb0b1027d.zip
Binary file not shown.
Binary file added
BIN
+86.7 KB
.yarn/cache/@fortawesome-fontawesome-common-types-npm-0.3.0-6e529e8bc7-f08280e2e6.zip
Binary file not shown.
Binary file added
BIN
+84.8 KB
.yarn/cache/@fortawesome-fontawesome-svg-core-npm-1.3.0-579cce7bf9-78be521be3.zip
Binary file not shown.
Binary file added
BIN
+2.38 MB
.yarn/cache/@fortawesome-free-solid-svg-icons-npm-6.0.0-f35c13f80a-af00e4245e.zip
Binary file not shown.
Binary file added
BIN
+13.3 KB
.yarn/cache/@fortawesome-react-fontawesome-npm-0.1.17-4e46858d39-a95a9ef178.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15 KB
.yarn/cache/@humanwhocodes-config-array-npm-0.9.5-030a025eae-8ba6281bc0.zip
Binary file not shown.
Binary file added
BIN
+13.4 KB
.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip
Binary file not shown.
Binary file added
BIN
+5.7 KB
.yarn/cache/@istanbuljs-load-nyc-config-npm-1.1.0-42d17c9cb1-d578da5e2e.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.27 KB
.yarn/cache/@jest-test-sequencer-npm-27.5.1-b9bc39f9fc-f21f9c8bb7.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15.1 KB
.yarn/cache/@jridgewell-resolve-uri-npm-3.0.5-bb57d127db-1ee652b693.zip
Binary file not shown.
Binary file added
BIN
+10.2 KB
.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.11-68fac44d63-3b2afaf840.zip
Binary file not shown.
Binary file added
BIN
+17.1 KB
.yarn/cache/@jridgewell-trace-mapping-npm-0.3.4-d0db906c7f-ab8bce84bb.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+20.2 KB
.yarn/cache/@mrmlnc-readdir-enhanced-npm-2.2.1-5286808663-d3b82b2936.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+63.3 KB
.yarn/cache/@pmmmwh-react-refresh-webpack-plugin-npm-0.5.4-17669decc4-66deb75fe0.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+26.9 KB
.yarn/cache/@rollup-plugin-node-resolve-npm-11.2.1-1cea144df4-6f3b3ecf9a.zip
Binary file not shown.
Binary file added
BIN
+10.5 KB
.yarn/cache/@rollup-plugin-replace-npm-2.4.2-86e64ab79f-b2f1618ee5.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+13.7 KB
.yarn/cache/@rushstack-eslint-patch-npm-1.1.0-49ab40dc81-4602c23454.zip
Binary file not shown.
Binary file added
BIN
+11.2 KB
.yarn/cache/@sapphire-async-queue-npm-1.3.0-c79c782824-267a3970ac.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+75.6 KB
.yarn/cache/@surma-rollup-plugin-off-main-thread-npm-2.2.3-1f57d3eded-2c02134944.zip
Binary file not shown.
Binary file added
BIN
+3.99 KB
.yarn/cache/@svgr-babel-plugin-add-jsx-attribute-npm-5.4.0-7f1e614ce1-1c538cf312.zip
Binary file not shown.
Binary file added
BIN
+3.64 KB
.yarn/cache/@svgr-babel-plugin-remove-jsx-attribute-npm-5.4.0-81b60827fa-ad2231bfcb.zip
Binary file not shown.
Binary file added
BIN
+3.54 KB
.../cache/@svgr-babel-plugin-remove-jsx-empty-expression-npm-5.0.1-61d6aef206-175c8f13dd.zip
Binary file not shown.
Binary file added
BIN
+3.89 KB
.../cache/@svgr-babel-plugin-replace-jsx-attribute-value-npm-5.0.1-b13516ed13-68f4e2a5b9.zip
Binary file not shown.
Binary file added
BIN
+4.35 KB
.yarn/cache/@svgr-babel-plugin-svg-dynamic-title-npm-5.4.0-6e508e9c0a-c46feb5245.zip
Binary file not shown.
Binary file added
BIN
+3.66 KB
.yarn/cache/@svgr-babel-plugin-svg-em-dimensions-npm-5.4.0-0229e38da4-0d19b26147.zip
Binary file not shown.
Binary file added
BIN
+4.52 KB
...n/cache/@svgr-babel-plugin-transform-react-native-svg-npm-5.4.0-62f0a6e8dc-8ac5dc9fb2.zip
Binary file not shown.
Binary file added
BIN
+5.95 KB
.yarn/cache/@svgr-babel-plugin-transform-svg-component-npm-5.5.0-82fe1aa0d7-94c3fed490.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14.4 KB
.yarn/cache/@svgr-hast-util-to-babel-ast-npm-5.5.0-fef404b2de-a03c1c7ab9.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.73 KB
.yarn/cache/@szmarczak-http-timer-npm-1.1.2-ea82ca2d55-4d9158061c.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.51 MB
.yarn/cache/@tailwindcss-postcss7-compat-npm-2.2.17-03f4839279-110d79e734.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.99 KB
.yarn/cache/@types-babel__generator-npm-7.6.4-03e776f956-20effbbb5f.zip
Binary file not shown.
Binary file added
BIN
+3.71 KB
.yarn/cache/@types-babel__template-npm-7.4.1-fe1db49e53-649fe8b42c.zip
Binary file not shown.
Binary file added
BIN
+21.5 KB
.yarn/cache/@types-babel__traverse-npm-7.14.2-fd6679839e-a797ea09c7.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.57 KB
.yarn/cache/@types-command-line-args-npm-5.2.0-3454e6d6cf-423121d2d0.zip
Binary file not shown.
Binary file added
BIN
+3.46 KB
.yarn/cache/@types-connect-history-api-fallback-npm-1.3.5-a53af77794-464d06e5ab.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+22.3 KB
.yarn/cache/@types-express-serve-static-core-npm-4.17.28-608d4aa166-826489811a.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.29 KB
.yarn/cache/@types-html-minifier-terser-npm-6.1.0-707ea07fcb-eb843f6a8d.zip
Binary file not shown.
Oops, something went wrong.