1
0
Fork 0

feat: add og app (boilerplate)

This commit is contained in:
Vojtěch Mareš 2023-10-07 11:21:17 +02:00
parent 7ebe33a52a
commit db47579536
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
14 changed files with 202 additions and 14 deletions

36
apps/og/package.json Normal file
View file

@ -0,0 +1,36 @@
{
"name": "og",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@vercel/analytics": "^1.1.0",
"clsx": "^2.0.0",
"next": "13.5.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "^20.8.3",
"@types/react": "^18.2.25",
"autoprefixer": "^10.4.16",
"eslint": "8.51.0",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3.3.3",
"tsconfig": "workspace:*",
"typescript": "^5.2.2"
},
"engines": {
"node": "18.x"
},
"packageManager": "pnpm@8.8.0"
}