Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Posandu committed Oct 27, 2024
1 parent 8691d45 commit 4821376
Show file tree
Hide file tree
Showing 66 changed files with 3,332 additions and 2,257 deletions.
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock
15 changes: 15 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}
37 changes: 22 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,49 @@
{
"name": "port",
"name": "portfolio",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"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",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"devDependencies": {
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
"@sveltejs/adapter-auto": "^2.1.1",
"@sveltejs/kit": "^1.30.4",
"@iconify/json": "^2.2.263",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/cookie": "^0.5.4",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"svelte": "^3.59.2",
"svelte-check": "^3.8.0",
"svelte-image-gallery": "^1.7.1",
"svelte-lightbox": "^1.1.3",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.6.3",
"typescript": "^4.9.5",
"vite": "^4.5.3"
"typescript": "^5.5.0",
"vite": "^5.4.4"
},
"type": "module",
"dependencies": {
"@fontsource-variable/outfit": "^5.1.0",
"@fontsource/source-sans-pro": "^5.1.0",
"@iconify/svelte": "^3.1.6",
"@onehop/client": "^1.6.5",
"@types/aos": "^3.0.7",
"@types/minimasonry": "^1.3.5",
"aos": "3.0.0-beta.6",
"@zerodevx/svelte-img": "^2.1.2",
"clsx": "^2.1.1",
"daisyui": "^4.12.2",
"firebase": "^9.23.0",
"minimasonry": "^1.3.2",
"svelte-carousel": "^1.0.25",
"svelte-ripple-action": "^1.0.6"
"svelte-masonry": "^0.1.1",
"svelte-ripple-action": "^1.0.6",
"svelte-seo": "^1.6.1",
"unplugin-icons": "^0.19.3"
}
}
Loading

0 comments on commit 4821376

Please sign in to comment.