mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* chore: move dev app to its own folder * docs: update CONTRIBUTING.md * docs: fix typos in CONTRIBUTING * chore: gitignore dev app lock files * chore: move release config into package.json
26 lines
675 B
JSON
26 lines
675 B
JSON
{
|
|
"name": "next-auth-app",
|
|
"version": "1.0.0",
|
|
"description": "NextAuth.js Developer app",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "npm-run-all --parallel copy:app dev:css dev:next",
|
|
"dev:next": "next dev",
|
|
"copy:app": "cpx \"../src/**/*\" next-auth --watch",
|
|
"copy:css": "cpx \"../dist/css/**/*\" dist/css --watch",
|
|
"watch:css": "cd .. && npm run watch:css",
|
|
"dev:css": "npm-run-all --parallel watch:css copy:css",
|
|
"start": "next start"
|
|
},
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"next": "^10.1.3",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"npm-run-all": "^4.1.5"
|
|
}
|
|
}
|