personal-website-sveltekit/package.json

74 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "personal-website-sveltekit",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=\"--inspect\" vite dev --host",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"test:ui": "svelte-kit sync && playwright test --ui",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@iconify-icons/material-symbols": "^1.2.58",
"@iconify-icons/mdi": "^1.2.48",
"@iconify-icons/radix-icons": "^1.2.9",
"@iconify-icons/simple-icons": "^1.2.74",
"@melt-ui/pp": "^0.1.4",
"@playwright/test": "^1.40.1",
"@resvg/resvg-js": "^2.6.0",
2024-01-16 00:24:48 +00:00
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/adapter-vercel": "^4.0.4",
"@sveltejs/enhanced-img": "^0.1.8",
"@sveltejs/kit": "^2.3.2",
2023-12-15 17:47:22 +00:00
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
2023-09-26 08:18:42 +00:00
"autoprefixer": "^10.4.16",
2024-01-16 00:24:48 +00:00
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^2.35.1",
"iconify-icon": "^1.0.8",
"just-intersect": "^4.3.0",
"mdsvex": "^0.10.6",
"mdsvex-relative-images": "^1.0.3",
2024-01-16 00:24:48 +00:00
"postcss": "^8.4.33",
"postcss-import": "^15.1.0",
"postcss-load-config": "^4.0.2",
"postcss-preset-env": "^8.5.1",
2023-05-01 06:07:19 +00:00
"prettier": "^2.8.8",
2023-06-05 22:54:11 +00:00
"prettier-plugin-svelte": "^2.10.1",
2024-01-16 00:24:48 +00:00
"sass": "^1.69.7",
"satori": "^0.10.11",
"satori-html": "^0.3.2",
"scrape-it": "^6.1.0",
"svelte": "^4.2.8",
2024-01-16 00:24:48 +00:00
"svelte-check": "^3.6.3",
"svelte-meta-tags": "^3.1.0",
2024-01-16 00:24:48 +00:00
"svelte-preprocess": "^5.1.3",
"svelte-sequential-preprocessor": "^2.0.1",
2023-09-26 08:18:42 +00:00
"tslib": "^2.6.2",
2023-12-08 18:21:45 +00:00
"typescript": "^5.3.3",
"vanilla-lazyload": "^17.8.5",
2024-01-16 00:24:48 +00:00
"vite": "^5.0.11",
"vitest": "^1.2.0"
},
2023-02-13 06:30:22 +00:00
"type": "module",
"engines": {
"node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0",
"pnpm": ">=8"
},
2023-02-13 06:30:22 +00:00
"dependencies": {
"@melt-ui/svelte": "^0.50.1",
"@types/nprogress": "^0.2.3",
"@vercel/og": "^0.5.20",
2023-04-17 19:01:00 +00:00
"ioredis": "^5.3.2",
"nprogress": "^0.2.0"
2023-02-13 06:30:22 +00:00
}
2023-12-15 17:47:22 +00:00
}