-
-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "website",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">= 22.0.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . '!participants/*.json'",
"logos": "tsx scripts/logo-to-social-media-pngs.ts",
"update-schema": "tsx create-json-schema.ts > static/schemas/participants.2024.json && prettier --write ./static/schemas/participants.2024.json"
},
"packageManager": "pnpm@9.1.0",
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@playwright/test": "^1.50.1",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.18.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.2",
"eslint-plugin-svelte": "^3.0.3",
"globals": "^16.0.0",
"jsonc-parser": "3.3.1",
"playwright": "^1.50.1",
"prettier": "3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.22.4",
"svelte-check": "^4.1.4",
"tailwindcss": "^4.1.17",
"tslib": "2.8.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.0",
"vitest": "3.0.7",
"zod": "3.24.2",
"zod-to-json-schema": "3.24.3"
},
"type": "module",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@tailwindcss/oxide"
]
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.4.0"
}
}