-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.34 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.34 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
{
"name": "jarrodldavis.com",
"private": true,
"version": "0.0.1",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": "24.x",
"pnpm": "10.33.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.x",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "10.33.0",
"onFail": "error"
}
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "pnpm --sequential /prepare:/",
"prepare:env": "cp -n .env.example .env",
"prepare:svelte": "svelte-kit sync || echo ''",
"prepare:extract": "prepare/index.ts",
"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 ."
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@ibm/plex-mono": "^1.1.0",
"@ibm/plex-sans": "^1.1.0",
"@ibm/plex-serif": "^2.0.0",
"@sveltejs/adapter-vercel": "^6.3.3",
"@sveltejs/enhanced-img": "^0.10.4",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.2",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vercel/analytics": "^2.0.1",
"@vercel/og": "^0.11.1",
"@vercel/speed-insights": "^2.0.0",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.16.0",
"globals": "^17.4.0",
"ical.js": "^2.2.1",
"json-schema-to-ts": "^3.1.1",
"mrmime": "^2.0.1",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.2.4",
"sass": "^1.98.0",
"svelte": "^5.55.1",
"svelte-check": "^4.4.6",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"typescript-svelte-plugin": "^0.3.51",
"vite": "^8.0.3",
"yaml": "^2.8.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"@vercel/speed-insights",
"esbuild",
"sharp"
],
"ignoredBuiltDependencies": [
"@ibm/plex-mono",
"@ibm/plex-sans",
"@ibm/plex-serif"
]
}
}