-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
117 lines (117 loc) · 3.23 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "stevekinney.net",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev --port 4444",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"test:storybook": "test-storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-coverage": "^1.0.4",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-svelte-csf": "5.0.0-next.15",
"@storybook/blocks": "^8.4.7",
"@storybook/svelte": "^8.4.7",
"@storybook/sveltekit": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/test-runner": "^0.21.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/adapter-vercel": "^5.5.2",
"@sveltejs/enhanced-img": "^0.4.4",
"@sveltejs/kit": "^2.13.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.2",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vercel/speed-insights": "^1.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"autoprefixer": "^10.4.20",
"axe-playwright": "^2.0.3",
"change-case": "^5.4.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"fast-glob": "^3.3.2",
"globals": "^15.14.0",
"gray-matter": "^4.0.3",
"lucide-svelte": "^0.469.0",
"magic-string": "^0.30.17",
"mdsvex": "^0.12.3",
"postcss": "^8.4.49",
"postcss-nesting": "^13.0.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rehype-slug": "^6.0.0",
"rehype-unwrap-images": "^1.0.0",
"remark-gfm": "^4.0.0",
"satori": "^0.12.0",
"shiki": "^1.24.3",
"storybook": "^8.4.7",
"svelte": "^5.15.0",
"svelte-check": "^4.1.1",
"svelte-tree-walker": "^0.0.2",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"unist-util-visit": "^5.0.0",
"vite": "^6.0.5",
"vite-imagetools": "^7.0.5",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8",
"yaml": "^2.6.1"
},
"type": "module",
"dependencies": {
"@fontsource/fira-sans": "^5.1.0",
"@fontsource/league-gothic": "^5.1.0",
"@fontsource/roboto": "^5.1.0",
"@tailwindcss/container-queries": "^0.1.1",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.1",
"sharp": "0.33.5"
},
"overrides": {
"vite-imagetools": {
"sharp": "0.33.5"
}
},
"pnpm": {
"supportedArchitectures": {
"os": [
"linux",
"darwin",
"current"
],
"cpu": [
"x64",
"arm64",
"current"
]
}
},
"packageManager": "[email protected]"
}