feat: scaffold solisting-app Next.js package

This commit is contained in:
thesn10
2026-06-24 23:09:22 +02:00
parent 2a8b204ec6
commit 6ffa84f15a
4 changed files with 68 additions and 0 deletions

7
app/next.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import type { NextConfig } from 'next'
const config: NextConfig = {
reactStrictMode: true,
}
export default config

35
app/package.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "solisting-app",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@descro/sdk": "file:../../descro/sdk",
"@solana/connector": "^0.2.4",
"@solana/connector-debugger": "^0.1.1",
"@solana/kit": "^6.0.0",
"@solisting/sdk": "workspace:*",
"@tanstack/react-query": "^5.90.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"next": "^16.2.6",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^25.9.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.1.14",
"typescript": "^6.0.3"
}
}

5
app/postcss.config.mjs Normal file
View File

@@ -0,0 +1,5 @@
export default {
plugins: {
'@tailwindcss/postcss': {},
},
}

21
app/tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [{ "name": "next" }],
"paths": { "@/*": ["./src/*"] }
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}