generated from matfantinel/sveltekit-static-blog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.84 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.84 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "maxdaten-io",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "eslint .",
"format": "treefmt",
"vercel-build": "npm run build",
"redeploy-latest": "node scripts/redeploy-latest.js",
"update-site-preview-image": "node scripts/update-site-preview-image.js",
"migrate:post": "node --env-file=.env scripts/migrate-post-to-sanity.js",
"migrate:gems": "node --env-file=.env scripts/migrate-gems-to-sanity.js",
"test:unit": "vitest",
"test": "VITEST_SKIP_SLOW=true vitest --run",
"test:all": "vitest --run",
"test:links": "vitest --run tests/link-checker.test.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"studio:dev": "npm run dev --prefix studio",
"studio:build": "npm run build --prefix studio",
"studio:deploy": "npm run deploy --prefix studio"
},
"devDependencies": {
"@fontsource-variable/inter": "^5",
"@fontsource/inter": "^5.2.6",
"@frontmatter/extensibility": "^0.0.18",
"@playwright/test": "^1.53.1",
"@shikijs/transformers": "^3.7.0",
"@storybook/addon-docs": "^10.0.0",
"@storybook/addon-svelte-csf": "^5.0.3",
"@storybook/sveltekit": "^10.0.0",
"@sveltejs/adapter-vercel": "^6.3.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/dateformat": "^5.0.3",
"@types/node": "^25.0.9",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"@vitest/browser": "^4.0.17",
"@vitest/browser-playwright": "^4.0.17",
"@zerodevx/svelte-img": "^2.1.2",
"catppuccin-vsc-icons": "github:catppuccin/vscode-icons",
"dateformat": "^5.0.3",
"eslint": "^9.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^10.0.0",
"eslint-plugin-svelte": "^3.10.1",
"glob": "^13.0.0",
"globals": "^17.0.0",
"gray-matter": "^4.0.3",
"html-entities": "^2.6.0",
"imagetools-core": "^9.1.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.2.6",
"satori": "^0.19.1",
"satori-html": "^0.3.2",
"schema-dts": "^1.1.5",
"sharp": "^0.34.5",
"shiki": "^3.7.0",
"ssgoi": "^2.0.0",
"storybook": "^10.0.0",
"striptags": "^3.2.0",
"super-sitemap": "^1.0.5",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-meta-tags": "^4.4.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.35.0",
"unist-util-visit": "^5.0.0",
"uuid": "^13.0.0",
"vite": "^7.3.1",
"vite-imagetools": "^9.0.2",
"vitest": "^4.0.17",
"vitest-browser-svelte": "^2.0.1"
},
"type": "module",
"overrides": {
"cookie": "^0.7.0",
"fast-xml-parser": "^5.3.4",
"sharp": "^0.34.5"
},
"dependencies": {
"@fontsource-variable/space-grotesk": "^5.2.10",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@portabletext/svelte": "^3.0.1",
"@portabletext/to-html": "^5.0.1",
"@sanity/client": "^7.14.0",
"@sanity/image-url": "^2.0.3",
"groq": "^5.4.0"
}
}