-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.21 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
105
106
107
108
109
{
"name": "fitsch",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "vite preview",
"lint": "oxlint .",
"lint-fix": "oxlint --fix .",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "vitest run",
"test-watch": "vitest",
"test-ui": "vitest --ui",
"prepare": "husky",
"tscheck": "tsc --noEmit --skipLibCheck --excludeDirectories [src/paraglide/,src/packages/]"
},
"dependencies": {
"@emotion/css": "^11.13.5",
"@fontsource/courier-prime": "^5.2.6",
"@fontsource/geist-mono": "^5.2.6",
"@fontsource/geist-sans": "^5.2.5",
"@kobalte/core": "^0.13.10",
"@solid-primitives/context": "^0.3.1",
"@solid-primitives/date": "^2.1.2",
"@solid-primitives/deep": "^0.3.2",
"@solid-primitives/event-listener": "^2.4.3",
"@solid-primitives/i18n": "^2.2.1",
"@solid-primitives/keyboard": "^1.3.1",
"@solid-primitives/resource": "^0.4.2",
"@solid-primitives/scheduled": "^1.5.2",
"@solid-primitives/storage": "^4.3.2",
"@solid-primitives/timer": "^1.4.1",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.3",
"@solidjs/start": "2.0.0-alpha.2",
"@solidjs/testing-library": "^0.8.10",
"@solidjs/vite-plugin-nitro-2": "^0.1.0",
"@t3-oss/env-core": "^0.13.8",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.6.1",
"@vitest/ui": "^3.2.4",
"cheerio": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"deep-equal": "^2.2.3",
"downloadjs": "^1.4.7",
"es-toolkit": "^1.39.10",
"html-to-image": "^1.11.13",
"isbot": "^5.1.30",
"jsdom": "^26.1.0",
"lucide-solid": "^0.503.0",
"object-typed": "^1.0.0",
"ocache": "^0.1.4",
"ohash": "^2.0.11",
"postcss": "^8.5.6",
"posthog-js": "^1.260.2",
"solid-forms": "^0.5.2",
"solid-gesture": "^0.0.3",
"solid-js": "^1.9.12",
"solid-sonner": "^0.2.8",
"solidjs-use": "^2.3.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"tinycolor2": "^1.6.0",
"type-fest": "^4.41.0",
"unstorage": "^1.16.0",
"uuid": "^11.1.0",
"valibot": "^1.1.0",
"vite": "^7.3.2",
"vite-plugin-solid": "^2.11.7",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@netlify/blobs": "^8.2.0",
"@types/deep-equal": "^1.0.4",
"@types/downloadjs": "^1.4.6",
"eslint-plugin-solid": "^0.14.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"nitropack": "^2.11.13",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"playwright": "^1.53.1",
"prettier": "3.6.2",
"rollup-plugin-visualizer": "^6.0.3",
"ts-essentials": "^10.1.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.8.3"
},
"pnpm": {
"patchedDependencies": {
"solid-gesture": "patches/solid-gesture.patch",
"solid-forms": "patches/solid-forms.patch",
"@solidjs/start": "patches/@solidjs__start.patch",
"@solidjs/vite-plugin-nitro-2": "patches/@solidjs__vite-plugin-nitro-2.patch"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild"
]
}
}