-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.44 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
{
"name": "dle.dev",
"version": "2.3.0",
"private": true,
"type": "module",
"scripts": {
"changeset": "changeset",
"dev": "vite dev --host --force",
"build": "vite build",
"prepare": "husky",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"format": "prettier --write .",
"preview": "wrangler pages dev ./.svelte-kit/cloudflare",
"cf:prod": "pnpm wrangler pages deploy --branch master",
"bnd": "pnpm build && pnpm cf:prod",
"release": "pnpm changeset version && pnpm install --no-frozen-lockfile && pnpm build",
"version": "changeset version"
},
"lint-staged": {
"*.{ts,svelte}": "eslint --fix",
"*.{json,css,yaml}": "prettier --write",
"*.{md,svx}": "prettier --write"
},
"dependencies": {
"gsap": "^3.15.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@eslint/compat": "^2.1.0",
"@eslint/js": "latest",
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/public-sans": "^5.2.7",
"@lucide/svelte": "^1.24.0",
"@sveltejs/adapter-auto": "latest",
"@sveltejs/adapter-cloudflare": "^7.2.9",
"@sveltejs/enhanced-img": "^0.11.0",
"@sveltejs/kit": "^2.69.3",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.2",
"@types/node": "^25.9.5",
"bits-ui": "^2.18.1",
"clsx": "^2.1.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsrepo": "^3.8.1",
"lint-staged": "^16.4.0",
"mdsvex": "^0.12.7",
"prettier": "^3.9.5",
"prettier-plugin-svelte": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.8.1",
"prismjs": "^1.30.0",
"runed": "^0.37.1",
"shadcn-svelte": "^1.4.2",
"svelte": "^5.56.5",
"svelte-check": "^4.7.3",
"svelte-toolbelt": "^0.10.6",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.4",
"wrangler": "^4.111.0"
}
}