-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update patch-package * Formatting and CI version updates * Search for latest packages from root to avoid dependabot PR dupes * Update eslint, jest and prettier related dependencies * Update @apollo/client * Update @babel related dependencies on client * Remove unused moxios * Update frontend styling related dependencies * Update bootstrap and other related client dependencies * Update additional client dependencies * Update react related dependencies * Consolidate react imports * Update puppeteer * Update webpack related dependencies * Additional updates * Update server testing dependencies * Update sequelize dependencies * Update pg, nodemon, minimist, moment on server * Update fs-extra, graphql, js-base64, pg-hstore on server * Update express, express-handlebars, express-session on server * Update dotenv, dotenv-cli dependencies on server * Update connect-pg-simple * Update apollo related dependencies on server * Limit dependabot PRs
- Loading branch information
Showing
16 changed files
with
3,599 additions
and
2,185 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,36 +1,62 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true, | ||
"jest/globals": true | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true, | ||
"jest/globals": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"prettier", | ||
"plugin:prettier/recommended", | ||
"plugin:jest/recommended" | ||
], | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"prettier", | ||
"plugin:prettier/recommended", | ||
"plugin:jest/recommended" | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react", | ||
"json", | ||
"prettier", | ||
"jest" | ||
], | ||
"rules": { | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["react", "json", "prettier", "jest"], | ||
"rules": { | ||
"linebreak-style": ["error", "unix"], | ||
"semi": ["error", "always"], | ||
"eol-last": ["error", "always"], | ||
"no-console": ["error", { "allow": ["warn", "error"] }], | ||
"no-use-before-define": ["off"], | ||
"react/display-name": ["off"] | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
"semi": [ | ||
"error", | ||
"always" | ||
], | ||
"eol-last": [ | ||
"error", | ||
"always" | ||
], | ||
"no-console": [ | ||
"error", | ||
{ | ||
"allow": [ | ||
"warn", | ||
"error" | ||
] | ||
} | ||
], | ||
"no-use-before-define": [ | ||
"off" | ||
], | ||
"react/display-name": [ | ||
"off" | ||
] | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
{ | ||
"presets": ["@babel/env", "@babel/preset-react"], | ||
"plugins": ["lodash"] | ||
"presets": [ | ||
"@babel/preset-env", | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
"lodash" | ||
] | ||
} |
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
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
module.exports = { | ||
development: { | ||
database: process.env.PGDATABASE, | ||
username: process.env.PGUSER, | ||
password: process.env.PGPASSWORD, | ||
host: process.env.PGHOST, | ||
port: process.env.PGPORT, | ||
dialect: 'postgres', | ||
dialectOption: { | ||
ssl: true, | ||
native: true, | ||
multipleStatements: true | ||
}, | ||
seederStorage: 'sequelize', | ||
logging: false // console.log // eslint-disable-line no-console | ||
} | ||
development: { | ||
database: process.env.PGDATABASE, | ||
username: process.env.PGUSER, | ||
password: process.env.PGPASSWORD, | ||
host: process.env.PGHOST, | ||
port: process.env.PGPORT, | ||
dialect: 'postgres', | ||
dialectOption: { | ||
ssl: true, | ||
native: true, | ||
multipleStatements: true | ||
}, | ||
seederStorage: 'sequelize', | ||
logging: false // console.log // eslint-disable-line no-console | ||
} | ||
}; |
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.