rsnext/examples/auth-with-stytch/package.json
Chris ff573632af
Add authentication example using Stytch (#32194)
## Documentation / Examples

This PR adds an example Next.js app that uses [Stytch](https://stytch.com/) for authentication, deployed on Vercel.
2021-12-22 19:30:44 +00:00

20 lines
397 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@stytch/stytch-react": "^3.0.3",
"next": "12.0.7",
"next-iron-session": "^4.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"stytch": "^3.6.1"
},
"devDependencies": {
"@types/react": "17.0.37",
"typescript": "^4.5.4"
}
}