-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.38 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
{
"name": "harambasic.de",
"version": "3.0.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --check . && eslint . --fix",
"format": "prettier --write .",
"generateFavicons": "node scripts/fetch-favicon/index.js",
"socialMedia:auto": "node scripts/generate-social-media-preview/generateAutomatic.js",
"socialMedia:manual": "node scripts/generate-social-media-preview/generateManual.js",
"newPost": "node scripts/generate-post/index.js",
"generateCardImages": "node --env-file=.env scripts/generate-card-images/index.js"
},
"devDependencies": {
"@fontsource/fira-mono": "^5.0.8",
"@iconify/svelte": "^3.1.4",
"@neoconfetti/svelte": "^1.0.0",
"@playwright/test": "^1.37.1",
"@supabase/supabase-js": "^2.26.0",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/enhanced-img": "^0.1.5",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/cookie": "^0.5.2",
"@types/markdown-it": "^13.0.1",
"@types/marked": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"autoprefixer": "^10.4.15",
"cheerio": "^1.0.0-rc.12",
"cssnano": "^6.0.1",
"date-fns": "^2.29.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"front-matter": "^4.0.2",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.9.0",
"js-yaml": "^4.1.0",
"openai": "^4.24.1",
"playwright": "^1.37.1",
"postcss-nested": "^6.0.1",
"postcss-size": "^4.0.1",
"postcss-sorting": "^8.0.2",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-parse-frontmatter": "^1.0.3",
"remark-rehype": "^11.0.0",
"svelte": "^4.2.0",
"svelte-check": "^3.5.1",
"svelte-preprocess-import-assets": "^1.0.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"unist-util-visit": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"type": "module"
}