Skip to content

Commit

Permalink
Merge pull request #113 from OperationSpark/111-chore-update-dependen…
Browse files Browse the repository at this point in the history
…cies

Update Dependencies + add dependabot
  • Loading branch information
ptbarnum4 committed Dec 21, 2023
2 parents 6166fb6 + c79647d commit 4045d8e
Show file tree
Hide file tree
Showing 76 changed files with 6,195 additions and 12,259 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates#example-disabling-version-updates-for-some-dependencies

version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly' # daily, weekly, monthly
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Cypress run
uses: cypress-io/github-action@v2
uses: cypress-io/github-action@v6
env:
MAILCHIMP_API_KEY: ${{ secrets.MAILCHIMP_API_KEY }}
MAILCHIMP_AUDIENCE_ID: ${{ secrets.MAILCHIMP_AUDIENCE_ID }}
Expand Down
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"files.insertFinalNewline": true,
"cSpell.words": ["ethnicities"]
"cSpell.words": ["ethnicities", "transformative"]
}
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,6 @@
- Build the project with `npm run build`
- Start the server with `npm start`

---

---

## <h3 align='center'>TODO: Complete README</h3>

---

---

<p align='center'>
<a href='https://vercel.com/?utm_source=operation-spark&utm_campaign=oss' target='_blank' >
<img src='public/images/logos/etc/vercel_banner.svg' />
Expand Down
11 changes: 11 additions & 0 deletions cypress.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { defineConfig } from 'cypress'

export default defineConfig({
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.js')(on, config)
},
},
})
1 change: 0 additions & 1 deletion cypress.json

This file was deleted.

File renamed without changes.
File renamed without changes.
10 changes: 3 additions & 7 deletions data/about.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
],
"sections": [
{
"title": [
"Who We Serve"
],
"title": ["Who We Serve"],
"description": [
"80% of low-income students drop out of college strapped with debt. Across the South, we have been left with thousands of young adults, ages 16 to 24, not in school and unemployed or underemployed. The impact on our communities is devastating.",
"Meanwhile, as of June 2022, nearly 700,000 high-wage computing jobs remain unfilled across the country, while our colleges and universities graduated less than 200,000 computer science students last year.",
Expand All @@ -16,9 +14,7 @@
]
},
{
"title": [
"A Career for Everyone"
],
"title": ["A Career for Everyone"],
"description": [
"The field of software development is quite wide. No matter your interests or aptitude, there's certainly a career for you in the software industry. You just need to build a few apps to start discovering all that software has to offer.",
"The skills involved in building mobile video games and apps are quite varied, including application design, game mechanics and user experience, visual and sound design, computer engineering of various sorts, quality assurance, project, product and cost management, content management, and public relations of all kinds. And each of these skills leads to careers, careers with futures - for example, an entry-level quality assurance analyst is a well-paying, entry-level position that can lead to a job in management or a career as a UX designer.",
Expand All @@ -43,7 +39,7 @@
"phone": "504.534.8277"
},
"about": [
"John has 24 years of professional experience in software development, having worked for a diverse set of clients including, Tabasco, Tulane University, Riley Foods, Oreck Vacuums, The Canadian Imperial Bank of Commerce, Microsoft, Ernst and Young, Disney, and Sony. Beginning in 2009, his work in the video game industry in Montreal contributed to some of the most successful games on social platforms.",
"John has over 25 years of professional experience in software development, having worked for a diverse set of clients including, Tabasco, Tulane University, Riley Foods, Oreck Vacuums, The Canadian Imperial Bank of Commerce, Microsoft, Ernst and Young, Disney, and Sony. Beginning in 2009, his work in the video game industry in Montreal contributed to some of the most successful games on social platforms.",
"Mr. Fraboni holds a Bachelor of Music from McGill University and a Master of Music degree from the Manhattan School of Music. He is also the recipient of performing arts awards from the Canada Council for the Arts, the Ontario Arts Council, the Manhattan School of Music, International House New York, as well as the Canadian Academy of Recording Arts and Sciences (a Juno award, the Canadian equivalent of Grammy).",
"He has lived in Montreal, New York, New Orleans, and Toronto."
]
Expand Down
11 changes: 8 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,22 @@ module.exports = (phase, { defaultConfig }) => {
styledComponents: true,
},
env: {
OVERRIDE_NODE_ENV,
OVERRIDE_NODE_ENV: OVERRIDE_NODE_ENV || '',
FB_PIXEL_ID,
HIGHSCHOOL_FORM_ACTIVE: isHsFormActive,
HIGHSCHOOL_FORM_ACTIVE: `${isHsFormActive}`,
HIGHSCHOOL_FORM_RESPONSES_NAME,
},

// TODO: This will need to be updated when NextJS is updated due to change in 12.3.0 (Currently 12.1.0)
// https://nextjs.org/docs/messages/next-image-unconfigured-host

images: {
domains: ['storage.googleapis.com'],
remotePatterns: [
{
protocol: 'https',
hostname: 'storage.googleapis.com',
},
],
},
async redirects() {
return [
Expand Down
Loading

1 comment on commit 4045d8e

@vercel
Copy link

@vercel vercel bot commented on 4045d8e Dec 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.