rsnext/examples/with-reasonml/package.json
Pierre de la Martinière 46ddd8cf60
Update next-transpile-modules to 9.0.0 across examples (#30418)
## Documentation / Examples

- [x] Make sure the linting passes by running `yarn lint`

It's this time of the year again :^) congrats to the Next.js team for the amazing release!
2021-10-27 09:48:28 +00:00

22 lines
567 B
JSON

{
"private": true,
"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"
},
"dependencies": {
"next": "latest",
"next-transpile-modules": "^9.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reason-react": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"bs-platform": "^7.1.0",
"concurrently": "^5.1.0"
}
}