Skip to content

Instantly share code, notes, and snippets.

@methodbox
Created June 23, 2019 16:30
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 methodbox/abf480aaa6aab1c09b643869a69532ef to your computer and use it in GitHub Desktop.
Save methodbox/abf480aaa6aab1c09b643869a69532ef to your computer and use it in GitHub Desktop.
Parcel Example - package.json
{
"name": "parcel-example",
"version": "1.0.0",
"description": "An React app using Parcel",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel src/index.html --open",
"build": "parcel build src/index.html",
"clean": "rm -rf dist/*"
},
"author": "Christopher Shaffer",
"license": "ISC",
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"parcel-bundler": "^1.12.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment