rsnext/examples/with-reasonml-todo/package.json
Nathan Sculli fa39b311ec
A little bit of maintenance on the ReasonML examples (#11662)
* Add babel-types package

`next dev` was failing with:

```
Error: Cannot find module 'babel-types'
```

* Upgrade to the latest bs-platform

Also add the `babel-types` package to stop the `next dev` command from complaining.

* Remove extraneous babel-plugin-bucklescript dependency.

Seems the dependency has been deprecated, and it doesn't seem to be required
anyways.
2020-04-06 10:44:01 +02:00

24 lines
616 B
JSON

{
"name": "with-reasonml",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"bsb -clean-world -make-world -w\" \"next dev\"",
"dev:reason": "bsb -clean-world -make-world -w",
"dev:next": "next dev",
"build": "bsb -clean-world -make-world && next build",
"start": "next start"
},
"license": "ISC",
"dependencies": {
"next": "latest",
"next-transpile-modules": "^3.0.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"reason-react": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"bs-platform": "7.2.2",
"concurrently": "^4.1.0"
}
}