rsnext/examples/with-userbase/package.json
Matthew Sweeney 7e16f7f43b
Update with-userbase Example (#14100)
This PR updates the `with-userbase` example with the following changes:

- Removes the `vercel.json` file, this is no longer needed with [recent changes](https://vercel.com/docs/v2/build-step#environment-variables).
- Changes the URL of the Deploy Button to use `?env`, `?envLink`, and `?envDescription` query strings, these prompt for environment variables upon import.
- Updates the instructions to reflect the changes made to the import and deployment process.
2020-06-12 01:20:52 +00:00

20 lines
410 B
JSON

{
"name": "with-userbase",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "^9.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"userbase-js": "^1.3.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.1.4"
}
}