dependacies
This commit is contained in:
parent
d6413fa514
commit
e137a8771b
3 changed files with 5723 additions and 5762 deletions
11396
package-lock.json
generated
11396
package-lock.json
generated
File diff suppressed because it is too large
Load diff
85
package.json
85
package.json
|
@ -1,46 +1,43 @@
|
||||||
{
|
{
|
||||||
"name": "firstapp",
|
"name": "firstapp",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
||||||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@jhubbardsf/svelte-sortablejs": "^1.1.0",
|
"@sveltejs/adapter-auto": "^3.0.0",
|
||||||
"@sveltejs/adapter-auto": "^3.0.0",
|
"@sveltejs/adapter-node": "^5.0.1",
|
||||||
"@sveltejs/adapter-node": "^5.0.1",
|
"@sveltejs/kit": "^2.0.0",
|
||||||
"@sveltejs/kit": "^2.0.0",
|
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
||||||
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
"@types/node": "^20.12.11",
|
||||||
"@types/node": "^20.12.11",
|
"autoprefixer": "^10.4.19",
|
||||||
"autoprefixer": "^10.4.19",
|
"daisyui": "^4.10.3",
|
||||||
"daisyui": "^4.10.3",
|
"postcss": "^8.4.38",
|
||||||
"postcss": "^8.4.38",
|
"svelte": "^4.2.7",
|
||||||
"svelte": "^4.2.7",
|
"svelte-check": "^3.6.0",
|
||||||
"svelte-check": "^3.6.0",
|
"tailwindcss": "^3.4.3",
|
||||||
"tailwindcss": "^3.4.3",
|
"tslib": "^2.4.1",
|
||||||
"tslib": "^2.4.1",
|
"typescript": "^5.0.0",
|
||||||
"typescript": "^5.0.0",
|
"vite": "^5.0.3"
|
||||||
"vite": "^5.0.3"
|
},
|
||||||
},
|
"type": "module",
|
||||||
"type": "module",
|
"dependencies": {
|
||||||
"dependencies": {
|
"@radix-ui/react-avatar": "^1.0.4",
|
||||||
"@radix-ui/react-avatar": "^1.0.4",
|
"bits-ui": "^0.21.7",
|
||||||
"bits-ui": "^0.21.7",
|
"class-variance-authority": "^0.7.0",
|
||||||
"class-variance-authority": "^0.7.0",
|
"clsx": "^2.1.1",
|
||||||
"clsx": "^2.1.1",
|
"firebase": "^10.11.1",
|
||||||
"dotenv": "^16.4.5",
|
"firebase-admin": "^12.1.0",
|
||||||
"drag-drop-touch": "^1.3.1",
|
"lucide-react": "^0.378.0",
|
||||||
"firebase": "^10.11.1",
|
"svelte-drag-drop-touch": "^0.1.9",
|
||||||
"firebase-admin": "^12.1.0",
|
"svelte-toasts": "^1.1.2",
|
||||||
"lucide-react": "^0.378.0",
|
"tailwind-merge": "^2.3.0",
|
||||||
"svelte-drag-drop-touch": "^0.1.9",
|
"tailwind-variants": "^0.2.1",
|
||||||
"svelte-toasts": "^1.1.2",
|
"tailwindcss-animate": "^1.0.7"
|
||||||
"tailwind-merge": "^2.3.0",
|
}
|
||||||
"tailwind-variants": "^0.2.1",
|
|
||||||
"tailwindcss-animate": "^1.0.7"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,14 +10,12 @@ import { env } from "$env/dynamic/public";
|
||||||
// https://firebase.google.com/docs/web/setup#available-libraries
|
// https://firebase.google.com/docs/web/setup#available-libraries
|
||||||
// Your web app's Firebase configuration
|
// Your web app's Firebase configuration
|
||||||
const firebaseConfig = {
|
const firebaseConfig = {
|
||||||
|
|
||||||
apiKey: env.PUBLIC_API_KEY,
|
apiKey: env.PUBLIC_API_KEY,
|
||||||
authDomain: env.PUBLIC_AUTH_DOMAIN ,
|
authDomain: env.PUBLIC_AUTH_DOMAIN,
|
||||||
projectId: env.PUBLIC_PROJECT_ID,
|
projectId: env.PUBLIC_PROJECT_ID,
|
||||||
storageBucket: env.PUBLIC_STORAGE_BUCKET,
|
storageBucket: env.PUBLIC_STORAGE_BUCKET,
|
||||||
messagingSenderId: env.PUBLIC_MESSAGING_SENDER_ID,
|
messagingSenderId: env.PUBLIC_MESSAGING_SENDER_ID,
|
||||||
appId: env.PUBLIC_APP_ID,
|
appId: env.PUBLIC_APP_ID,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Initialize Firebase
|
// Initialize Firebase
|
||||||
|
|
Loading…
Reference in a new issue