-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
82 lines (82 loc) · 2.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "scottspence.com",
"private": true,
"author": {
"name": "Scott Spence",
"email": "[email protected]",
"url": "https://scottspence.com"
},
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "node ./build/index.js",
"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",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"test:ui": "vitest --ui",
"test:ci": "vitest run",
"cspell": "cspell '**/*.md' --config cspell.json --wordsOnly",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@fontsource-variable/manrope": "^5.1.1",
"@fontsource-variable/playpen-sans": "^5.1.1",
"@fontsource-variable/victor-mono": "^5.1.1",
"@fontsource/victor-mono": "^5.1.1",
"@playwright/test": "^1.50.1",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.17.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/typography": "0.5.16",
"@testing-library/svelte": "^5.2.6",
"@types/eslint": "^9.6.1",
"@types/nodemailer": "^6.4.17",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.4",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"autoprefixer": "^10.4.20",
"cspell": "^8.17.3",
"daisyui": "4.12.23",
"date-fns": "4.1.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"fathom-client": "3.7.2",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"marked": "15.0.6",
"mdsvex": "^0.12.3",
"mdsvex-relative-images": "1.0.3",
"nodemailer": "^6.10.0",
"prettier": "^3.5.0",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"rehype-autolink-headings": "7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "6.0.0",
"remark-preview": "1.0.3",
"slugify": "1.6.6",
"svead": "^0.0.13",
"svelte": "^5.19.9",
"svelte-check": "^4.1.4",
"sveltekit-embed": "^0.0.20",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"unist-util-visit": "5.0.0",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"dependencies": {
"@libsql/client": "^0.14.0"
}
}