rsnext/examples/with-stripe-typescript/package.json
Jonathan Steele b7c9604cc7
example: Improve Stripe examples (#53255)
### What?
* Updates to the pre-existing [`with-stripe-typescript` example](https://github.com/vercel/next.js/tree/canary/examples/with-stripe-typescript).

### Why?
* Uses latest Stripe best practices.
* Updates to App Router.


Co-authored-by: Michael Novotny <446260+manovotny@users.noreply.github.com>
Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
2023-08-03 23:25:29 +00:00

22 lines
452 B
JSON

{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@stripe/react-stripe-js": "2.1.1",
"@stripe/stripe-js": "1.54.1",
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0",
"server-only": "0.0.1",
"stripe": "12.14.0"
},
"devDependencies": {
"@types/node": "20.4.6",
"@types/react": "18.2.18",
"typescript": "5.1.6"
}
}