-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "galemc-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --port 3000",
"build": "astro build",
"start": "astro preview --port 3000",
"astro": "astro",
"format": "prettier --write .",
"lint:eslint": "eslint . --cache",
"lint:prettier": "prettier --check .",
"lint": "bun run lint:eslint && bun run lint:prettier",
"typecheck": "bun astro sync && tsc --noEmit"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/node": "^10.0.6",
"@astrojs/svelte": "8.0.4",
"@astrojs/vercel": "^10.0.8",
"@fontsource/geist-mono": "^5.2.7",
"@fontsource/geist-sans": "^5.2.5",
"@lucide/svelte": "^1.23.0",
"@tailwindcss/vite": "^4.2.4",
"astro": "6.2.1",
"clsx": "^2.1.1",
"echarts": "^6.0.0",
"gsap": "^3.15.0",
"json5": "^2.2.3",
"jszip": "^3.10.1",
"lru-cache": "^11.3.5",
"lucide-svelte": "^1.0.1",
"sqlite3": "^6.0.1",
"svelte": "^5.55.5",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"typescript": "^5.9.3",
"yaml": "^2.8.4",
"zod": "^4.4.2"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-svelte": "^3.17.1",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-svelte": "^3.5.1",
"svelte-eslint-parser": "^1.6.0",
"typescript-eslint": "^8.59.1"
}
}