-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.55 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
{
"name": "ib-ceska",
"type": "module",
"packageManager": "pnpm@11.24.0",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"prebuild": "astro sync",
"preview": "pnpm run build && wrangler dev",
"deploy": "pnpm run build && wrangler deploy",
"astro": "astro",
"check": "astro check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{astro,mdx,ts,tsx,js,jsx,json,css,md}": "prettier --write",
"*.{ts,tsx,js,jsx}": "biome check --write"
},
"dependencies": {
"@astrojs/cloudflare": "^14.2.6",
"@astrojs/mdx": "^7.0.8",
"@astrojs/react": "^6.0.4",
"@fontsource-variable/inter": "^5.2.8",
"@keystatic/astro": "^6.0.0",
"@keystatic/core": "^0.6.9",
"@markdoc/markdoc": "^0.4.0",
"@tailwindcss/vite": "^4.3.0",
"animejs": "^4.5.0",
"astro": "^7.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sharp": "^0.35.4",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/node": "^11.1.5",
"@biomejs/biome": "^2.5.0",
"@types/node": "^25.9.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"playwright": "^1.60.0",
"prettier": "^3.8.4",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^6.0.3",
"wrangler": "^4.128.0"
}
}