Skip to content

Instantly share code, notes, and snippets.

@akursat
Created March 22, 2020 10:39
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 akursat/f84723c31eb9c269a956b7a735a98d2d to your computer and use it in GitHub Desktop.
Save akursat/f84723c31eb9c269a956b7a735a98d2d to your computer and use it in GitHub Desktop.
parcel-example
{
"name": "parcel-example",
"version": "1.0.0",
"description": "An example of Parcel bundler with React.js",
"main": "index.js",
"scripts": {
"dev": "parcel src/index.html",
"build": "rm -rf ./dist/ ; parcel build --out-dir dist/ src/index.html",
"mockdb": "json-server --watch mock/db.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akursat/parcel-example.git"
},
"keywords": [
"parcel",
"bundler",
"react"
],
"author": "akursat",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/akursat/parcel-example/issues"
},
"homepage": "https://github.com/akursat/parcel-example#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"cssnano": "^4.1.10",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"sass": "^1.26.3"
},
"browserslist": [
"last 5 firefox versions",
"last 5 Chrome versions",
"last 2 edge versions",
"not dead"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment