rsnext/examples/with-reasonml-todo/package.json

23 lines
566 B
JSON
Raw Normal View History

2019-05-23 23:48:13 +02:00
{
"private": true,
2019-05-23 23:48:13 +02:00
"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",
2019-05-23 23:48:13 +02:00
"reason-react": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"bs-platform": "7.2.2",
2019-05-23 23:48:13 +02:00
"concurrently": "^4.1.0"
}
}