rsnext/examples/with-reasonml-todo/package.json
Kristoffer K 2acb53bd30
chore: update example names to match their folders (#16268)
**What's the problem this PR addresses?**

A decent amount of the examples don't have a `name` field in `package.json` that matches their folder name, meaning they either lack a name or the names are duplicated.

I was testing Yarn 2 workspaces using the entire examples directory and needed to get rid of the duplicates.

**How did you fix it?**

Updated the names to match the names of their folders
2020-09-05 21:23:51 +00:00

24 lines
621 B
JSON

{
"name": "with-reasonml-todo",
"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": "MIT",
"dependencies": {
"next": "latest",
"next-transpile-modules": "^4.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"
}
}