Last active
June 21, 2019 06:00
-
-
Save arecvlohe/bfa0e9a12648d679ee453d855a1097f8 to your computer and use it in GitHub Desktop.
A simple package.json for reason-react-starter
This file contains 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": "reason-react-starter", | |
"version": "1.0.0", | |
"main": "index.js", | |
"license": "MIT", | |
"scripts": { | |
"start": "concurrently \"npm run js-watch\" \"npm run bsb-watch\"", | |
"js-watch": "webpack-dev-server --hot --inline", | |
"bsb-watch": "bsb -make-world -w", | |
"bsb-clean": "bsb -clean-world" | |
}, | |
"dependencies": { | |
"bs-css": "9.0.0", | |
"normalize.css": "8.0.1", | |
"react": "16.8.6", | |
"react-dom": "16.8.6", | |
"reason-react": "0.7.0" | |
}, | |
"devDependencies": { | |
"@babel/core": "7.4.5", | |
"@babel/preset-env": "7.4.5", | |
"@babel/preset-react": "7.0.0", | |
"babel-loader": "8.0.6", | |
"bs-platform": "6.0.1", | |
"clean-webpack-plugin": "3.0.0", | |
"concurrently": "4.1.0", | |
"css-loader": "3.0.0", | |
"html-loader": "0.5.5", | |
"html-webpack-plugin": "3.2.0", | |
"style-loader": "0.23.1", | |
"webpack": "4.35.0", | |
"webpack-cli": "3.3.4", | |
"webpack-dev-server": "3.7.2" | |
}, | |
"engines": { | |
"node": ">= 11.15.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment