Created
June 23, 2019 16:30
-
-
Save methodbox/abf480aaa6aab1c09b643869a69532ef to your computer and use it in GitHub Desktop.
Parcel Example - package.json
This file contains hidden or 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
{ | |
"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