diff --git a/data/organizers.js b/data/organizers.js new file mode 100644 index 00000000..cb27b10d --- /dev/null +++ b/data/organizers.js @@ -0,0 +1,11 @@ +export const organizers = [ + { + name: 'Kevin Simper', + twitter: 'kevinsimper', + github: 'kevinsimper' + }, + { + name: 'Zoey Zou', + github: 'zoeyzou' + } +] diff --git a/package.json b/package.json index 49a05474..341fb7a8 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "build": "npm run prepare && next build && next export", "deploy": "npm run build && firebase deploy", "dev": "npm run prepare && next", - "fix-lint": "npx prettier --write --single-quote --no-semi next.config.js 'components/**/*.js' 'pages/*.js' '_posts/*.json' 'utils/*.js'", - "lint": "npx prettier -l --single-quote --no-semi next.config.js 'components/**/*.js' 'pages/*.js' '_posts/*.json' 'utils/*.js'", + "fix-lint": "npx prettier --write --single-quote --no-semi next.config.js 'components/**/*.js' 'pages/*.js' '_posts/*.json' 'utils/*.js' 'data/*.js'", + "lint": "npx prettier -l --single-quote --no-semi next.config.js 'components/**/*.js' 'pages/*.js' '_posts/*.json' 'utils/*.js' 'data/*.js'", "prepare": "npm run process-archive && cp -R _posts/ static/posts && npm run speakers", "process-archive": "mkdirp pages/archive && node utils/processmd", "speakers": "node utils/pull-speakers.js",