generated from przeprogramowani/10x-astro-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
{
"name": "10x-astro-starter",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/node": "^9.4.3",
"@astrojs/react": "^4.3.1",
"@astrojs/sitemap": "^3.5.1",
"@radix-ui/react-slot": "^1.1.2",
"@supabase/supabase-js": "^2.75.0",
"@tailwindcss/vite": "^4.1.13",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"astro": "^5.13.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.487.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.1.0",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.2.5"
},
"devDependencies": {
"@eslint/compat": "1.2.7",
"@eslint/js": "9.23.0",
"@typescript-eslint/eslint-plugin": "8.28.0",
"@typescript-eslint/parser": "8.28.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "10.1.1",
"eslint-import-resolver-typescript": "4.2.5",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.5",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-aeaed83-20250323",
"eslint-plugin-react-hooks": "5.2.0",
"husky": "9.1.7",
"lint-staged": "15.5.0",
"prettier-plugin-astro": "0.14.1",
"typescript-eslint": "8.28.0"
},
"lint-staged": {
"*.{ts,tsx,astro}": [
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}