rsnext/examples/radix-ui/package.json
Pedro Sanchez 6e171696f8
chore(examples): add Radix UI example (#41169)
fixes #40072 

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm lint`
- [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)


Co-authored-by: Balázs Orbán <18369201+balazsorban44@users.noreply.github.com>
2022-10-05 14:49:59 +00:00

23 lines
496 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "1.0.0",
"@radix-ui/react-icons": "1.1.1",
"next": "latest",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@types/node": "18.8.0",
"@types/react": "18.0.21",
"autoprefixer": "10.4.12",
"postcss": "8.4.17",
"tailwindcss": "3.1.8",
"typescript": "4.8.4"
}
}