stack/examples/demo/package.json
Konsti Wohlwend 057dac1a66
Some checks failed
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Runs E2E API Tests / build (22.x) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.x) (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
Next.js 15 support (#315)
Updates `examples/demo` to Next.js 15 and adds Next.js 15 support to `packages/stack`.

The other packages and apps are still running on Next.js 14 to ensure compatibility.
2024-11-08 03:12:31 +01:00

41 lines
1.1 KiB
JSON

{
"name": "@stackframe/example-demo-app",
"version": "2.6.19",
"description": "",
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
"clean": "rimraf .next && rimraf node_modules",
"dev": "next dev --turbo --port 8103",
"build": "next build",
"start": "next start --port 8103",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@stackframe/stack": "workspace:*",
"@stackframe/stack-shared": "workspace:*",
"@stackframe/stack-ui": "workspace:*",
"next": "^15.0.3",
"next-themes": "^0.4.3",
"react": "19.0.0-rc-65a56d0e-20241020",
"react-dom": "19.0.0-rc-65a56d0e-20241020",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"rimraf": "^5.0.10",
"tailwindcss": "^3.4.14"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1\n",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1\n"
}
}
}