Skip to content

Instantly share code, notes, and snippets.

@remy
Created July 31, 2019 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save remy/f08270610d0314d1a955d1d990c6f0a0 to your computer and use it in GitHub Desktop.
Save remy/f08270610d0314d1a955d1d990c6f0a0 to your computer and use it in GitHub Desktop.
Workshop directions

This will configure your setup ready for the Next workshop:

  1. Create a working directory: mkdir next-workshop
  2. Go into the directory: cd next-workshop
  3. Save the package.json file (included in this gist) to the working directory and save it as "package.json"
  4. Assuming you've installed Node and also have npm, run npm install
{
"name": "@remy/ffconf-workshop",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"dev": "next",
"server": "node lib/server",
"build": "next build",
"export": "next build && next export",
"start": "node lib/server"
},
"keywords": [],
"author": "Remy Sharp",
"license": "ISC",
"dependencies": {
"@mdx-js/mdx": "^1.1.1",
"@mdx-js/tag": "^0.20.3",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-mdx": "^1.2.0",
"cookie": "^0.4.0",
"express": "^4.16.4",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.0",
"next": "^9.0.2",
"next-nprogress": "^1.3.0",
"next-offline": "^4.0.3",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0"
},
"description": ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment