Skip to content

Instantly share code, notes, and snippets.

@OtayNacef
Created March 7, 2021 21:05
Show Gist options
  • Save OtayNacef/60a7d1386b49ef01a2e93ebe1846cdf4 to your computer and use it in GitHub Desktop.
Save OtayNacef/60a7d1386b49ef01a2e93ebe1846cdf4 to your computer and use it in GitHub Desktop.
React without CRA
{
"name": "react-without-cra",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --config ./webpack.config.js --mode development --port 3000"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.13.9",
"react-hot-loader": "^4.13.0",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"@babel/core": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment