1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-reasonml/package.json
Adam Lane 3d9564215c example with-reasonml dependency updates (#5048)
The original example fails to compile on my windows machine but updating bs-platform fixes that.
Depending on bs-next causes example to fail (package compiled with old incompatible version of bs-platform) so I have included it in a bindings directory where it can serve as an example of reason bindings.
Sources have been migrated to the latest reason-react.
2018-09-03 01:38:54 +02:00

23 lines
535 B
JSON

{
"name": "with-reasonml",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"bsb -clean-world -make-world -w\" \"next dev\"",
"build": "bsb -clean-world -make-world && next build",
"start": "next start"
},
"license": "ISC",
"dependencies": {
"babel-plugin-bucklescript": "^0.4.0",
"next": "latest",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"reason-react": "^0.5.3"
},
"devDependencies": {
"bs-platform": "^4.0.5",
"concurrently": "^3.5.1",
"webpack": "^3.8.1"
}
}