-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "canvasmc-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.8",
"@astrojs/node": "^10.0.4",
"@astrojs/svelte": "8.0.4",
"@fontsource/geist-mono": "^5.2.7",
"@fontsource/geist-sans": "^5.2.5",
"@tailwindcss/vite": "^4.2.2",
"astro": "6.1.4",
"clsx": "^2.1.1",
"echarts": "^6.0.0",
"gsap": "^3.14.2",
"lru-cache": "^11.3.2",
"lucide-svelte": "^1.0.1",
"sqlite3": "^6.0.1",
"svelte": "^5.55.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-svelte": "^3.17.0",
"prettier": "^3.8.1",
"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.58.0"
}
}