Revert "I might have to revert a lot of this"
This reverts commit33dec770e1, reversing changes made to05c7dad93d.
This commit is contained in:
parent
33dec770e1
commit
6a1c222b1c
4 changed files with 6161 additions and 84 deletions
|
|
@ -3,7 +3,6 @@
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
<<<<<<< HEAD
|
|
||||||
"dev:server": "tsx --watch server",
|
"dev:server": "tsx --watch server",
|
||||||
"dev:client": "astro dev",
|
"dev:client": "astro dev",
|
||||||
"dev": "npm run dev:client",
|
"dev": "npm run dev:client",
|
||||||
|
|
@ -35,41 +34,6 @@
|
||||||
"sharp",
|
"sharp",
|
||||||
"utf-8-validate"
|
"utf-8-validate"
|
||||||
]
|
]
|
||||||
=======
|
|
||||||
"dev": "node server.mjs",
|
|
||||||
"build": "next build --turbopack",
|
|
||||||
"start": "NODE_ENV=production node server.mjs"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@hookform/resolvers": "^3.9.0",
|
|
||||||
"@radix-ui/react-dialog": "^1.1.2",
|
|
||||||
"@radix-ui/react-dropdown-menu": "^2.1.2",
|
|
||||||
"@radix-ui/react-label": "^2.1.0",
|
|
||||||
"@radix-ui/react-select": "^2.1.2",
|
|
||||||
"@radix-ui/react-separator": "^1.1.0",
|
|
||||||
"@radix-ui/react-slot": "^1.1.0",
|
|
||||||
"@radix-ui/react-tabs": "^1.1.1",
|
|
||||||
"@radix-ui/react-toast": "^1.2.2",
|
|
||||||
"@radix-ui/react-tooltip": "^1.1.3",
|
|
||||||
"@tomphttp/bare-server-node": "^2.0.4",
|
|
||||||
"chemicaljs": "^2.1.1",
|
|
||||||
"class-variance-authority": "^0.7.0",
|
|
||||||
"clsx": "^2.1.1",
|
|
||||||
"framer-motion": "^11.11.8",
|
|
||||||
"lucide-react": "^0.452.0",
|
|
||||||
"mini-svg-data-uri": "^1.4.4",
|
|
||||||
"next": "15.3.1",
|
|
||||||
"next-themes": "^0.3.0",
|
|
||||||
"react": "^18.3.1",
|
|
||||||
"react-dom": "^18.3.1",
|
|
||||||
"react-hook-form": "^7.53.0",
|
|
||||||
"react-router-dom": "^6.27.0",
|
|
||||||
"sonner": "^1.5.0",
|
|
||||||
"store2": "^2.14.3",
|
|
||||||
"tailwind-merge": "^2.5.3",
|
|
||||||
"tailwindcss-animate": "^1.0.7",
|
|
||||||
"zod": "^3.23.8"
|
|
||||||
>>>>>>> main
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@iconify-json/lucide": "^1.2.30",
|
"@iconify-json/lucide": "^1.2.30",
|
||||||
6145
pnpm-lock.yaml
generated
Normal file
6145
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load diff
16
tsconfig.json
Normal file
16
tsconfig.json
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"extends": "astro/tsconfigs/strict",
|
||||||
|
"include": [".astro/types.d.ts", "**/*"],
|
||||||
|
"exclude": ["dist", "server"],
|
||||||
|
"compilerOptions": {
|
||||||
|
"moduleResolution": "bundler",
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"@components/*": ["src/components/*"],
|
||||||
|
"@layouts/*": ["src/layouts/*"],
|
||||||
|
"@utils/*": ["src/utils/*"],
|
||||||
|
"@assets/*": ["src/assets/*"],
|
||||||
|
"@styles/*": ["src/styles/*"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
{
|
|
||||||
"extends": "astro/tsconfigs/strict",
|
|
||||||
"include": [".astro/types.d.ts", "**/*"],
|
|
||||||
"exclude": ["dist", "server"],
|
|
||||||
"compilerOptions": {
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
"lib": [
|
|
||||||
"dom",
|
|
||||||
"dom.iterable",
|
|
||||||
"esnext"
|
|
||||||
],
|
|
||||||
"allowJs": true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"strict": true,
|
|
||||||
"noEmit": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"module": "esnext",
|
|
||||||
>>>>>>> main
|
|
||||||
"moduleResolution": "bundler",
|
|
||||||
"baseUrl": ".",
|
|
||||||
"paths": {
|
|
||||||
<<<<<<< HEAD
|
|
||||||
"@components/*": ["src/components/*"],
|
|
||||||
"@layouts/*": ["src/layouts/*"],
|
|
||||||
"@utils/*": ["src/utils/*"],
|
|
||||||
"@assets/*": ["src/assets/*"],
|
|
||||||
"@styles/*": ["src/styles/*"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
=======
|
|
||||||
"@/*": [
|
|
||||||
"./src/*"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"target": "ES2017"
|
|
||||||
},
|
|
||||||
"include": [
|
|
||||||
"next-env.d.ts",
|
|
||||||
"**/*.ts",
|
|
||||||
"**/*.tsx",
|
|
||||||
".next/types/**/*.ts"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
>>>>>>> main
|
|
||||||
}
|
|
||||||
Loading…
Add table
Reference in a new issue