-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.95 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
{
"name": "shako",
"type": "module",
"version": "0.7.1",
"packageManager": "bun@1.3.11",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"build": "astro check && astro build",
"build:docker": "docker buildx build -f docker/Dockerfile -t ghcr.io/keksiqc/shako:latest .",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint",
"lint:fix": "eslint --fix",
"up": "taze major -I",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@astrojs/react": "5.0.3",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@iconify-json/simple-icons": "^1.2.77",
"@iconify/react": "^6.0.2",
"@tailwindcss/vite": "^4.2.2",
"astro": "6.1.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.8.0",
"motion": "^12.38.0",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"use-lanyard": "^1.7.0"
},
"devDependencies": {
"@antfu/eslint-config": "8.1.1",
"@astrojs/check": "0.9.8",
"@astrojs/ts-plugin": "1.10.7",
"@eslint-react/eslint-plugin": "3.0.0",
"@playform/compress": "0.2.3",
"@types/bun": "1.3.12",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"astro-eslint-parser": "1.4.0",
"c12": "4.0.0-beta.4",
"eslint": "10.2.0",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-better-tailwindcss": "4.4.0",
"eslint-plugin-format": "2.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"lint-staged": "16.4.0",
"prettier": "3.8.2",
"prettier-plugin-astro": "0.14.1",
"simple-git-hooks": "2.13.1",
"taze": "19.11.0",
"tw-animate-css": "1.4.0",
"typescript": "6.0.2"
},
"simple-git-hooks": {
"pre-commit": "bun run lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}