-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.22 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.22 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
{
"name": "minecraft-gilde-web",
"type": "module",
"version": "1.2.0",
"description": "Offizielle Website von Minecraft-Gilde.de, gebaut mit Astro.",
"repository": {
"type": "git",
"url": "git+https://github.com/CFPlusPlus/minecraft-gilde-web.git"
},
"author": "Christian Falkner",
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "wrangler types && astro dev",
"build": "astro build && node scripts/postbuild-404.mjs",
"preview": "wrangler types && astro preview",
"deploy:worker": "node scripts/deploy-worker.mjs",
"astro": "astro",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint \"src/**/*.{js,mjs,cjs,ts,tsx,astro}\" \"scripts/**/*.{js,mjs,cjs,ts}\" \"e2e/**/*.{js,mjs,cjs,ts,tsx}\" \"*.config.{js,mjs,cjs,ts}\" \"*.{ts,mjs}\"",
"lint:fix": "eslint \"src/**/*.{js,mjs,cjs,ts,tsx,astro}\" \"scripts/**/*.{js,mjs,cjs,ts}\" \"e2e/**/*.{js,mjs,cjs,ts,tsx}\" \"*.config.{js,mjs,cjs,ts}\" \"*.{ts,mjs}\" --fix",
"check": "astro check",
"config:check": "node scripts/check-config-drift.mjs",
"test": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"@lucide/astro": "^1.0.0",
"astro": "^6.0.0",
"isomorphic-dompurify": "^3.0.0",
"lucide-react": "^1.0.0",
"marked": "^18.0.0",
"mysql2": "^3.20.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"skinview3d": "^3.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/cloudflare": "^13.0.0",
"@astrojs/react": "^5.0.0",
"@astrojs/sitemap": "^3.5.0",
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.13",
"@types/node": "^24.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-astro": "^1.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"prettier": "^3.8.0",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.0",
"tailwindcss": "^4.1.13",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.18",
"wrangler": "^4.78.0"
},
"overrides": {
"vite": "^7"
}
}