Add ReasonML boilerplate

After some toil, I finally support basic ReasonML starter code.

I'm adding it to the nut-score directory because I would like to make a simple
webpage that render some nutritional facts about nuts with respect to the
ketogenic diet.

I'm not sure if I should include or exclude te .bs.js files.

See the README.md for more information.
This commit is contained in:
William Carroll 2020-03-17 22:40:48 +00:00
parent 166aed6e80
commit 209fdf5726
14 changed files with 484 additions and 0 deletions

27
nut-score/package.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "nut-score",
"version": "1.0.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w -ws _ ",
"clean": "bsb -clean-world",
"server": "moduleserve ./ --port 8000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react"
],
"author": "",
"license": "MIT",
"dependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-react": ">=0.7.0"
},
"devDependencies": {
"bs-platform": "^${bsb:bs-version}",
"moduleserve": "^0.9.0"
}
}