-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.35 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
{
"name": "hackerspacesg",
"type": "module",
"version": "3.0.0",
"license": "AGPL-3.0-or-later",
"private": true,
"description": "HackerspaceSG's main website",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --cache \"src/**/*.{js,jsx,ts,tsx,cjs,mjs,astro}\"",
"format": "prettier --config .prettierrc.yml --write \"**/*.{js,jsx,ts,tsx,cjs,mjs,astro,md,mdx,json}\"",
"format:diff": "prettier --config .prettierrc.yml --list-different \"**/*.{js,jsx,ts,tsx,cjs,mjs,astro,md,mdx,json}\""
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.3",
"@astrojs/react": "^4.1.2",
"@astrojs/sitemap": "^3.2.1",
"@iconify-json/fa": "^1.2.1",
"@iconify-json/lucide": "^1.2.20",
"@iconify-json/simple-icons": "^1.2.17",
"@radix-ui/react-slot": "^1.1.1",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"astro": "^5.1.1",
"astro-critters": "^2.2.0",
"astro-icon": "^1.1.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"embla-carousel-auto-scroll": "^8.5.1",
"embla-carousel-react": "^8.5.1",
"ical": "^0.8.0",
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-custom-header-id": "^1.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tailwindcss/typography": "^0.5.15",
"@types/eslint__js": "^8.42.3",
"@types/ical": "^0.8.3",
"@types/node": "^22.10.2",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}