Skip to content

Commit

Permalink
(newapp) move dev dependencies to devDependencies in package.json (be…
Browse files Browse the repository at this point in the history
…tter for Docker) (#2475)
  • Loading branch information
kivi authored Jun 10, 2021
1 parent afa6792 commit ef6a6db
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions packages/generator/templates/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,24 @@
},
"dependencies": {
"@prisma/client": "2.x",
"@types/react": "17.x",
"@types/preview-email": "2.x",
"blitz": "canary",
"react-dom": "0.0.0-experimental-0eea57724",
"react-error-boundary": "3.x",
"react": "0.0.0-experimental-0eea57724",
"zod": "3.x"
},
"devDependencies": {
"@types/preview-email": "2.x",
"@types/react": "17.x",
"eslint": "7.x",
"husky": "6.x",
"lint-staged": "10.x",
"prettier-plugin-prisma": "0.x",
"prettier": "2.x",
"pretty-quick": "3.x",
"preview-email": "3.x",
"prettier-plugin-prisma": "0.x",
"prisma": "2.x",
"react": "0.0.0-experimental-0eea57724",
"react-dom": "0.0.0-experimental-0eea57724",
"react-error-boundary": "3.x",
"typescript": "~4.2",
"zod": "3.x"
"typescript": "~4.2"
},
"private": true
}

0 comments on commit ef6a6db

Please sign in to comment.