-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
79
{
"name": "pujo-atlas-web",
"type": "module",
"version": "1.1.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json,astro}' --ignore-path ../.gitignore --ignore-unknown --write",
"format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json,astro}' --ignore-path ../.gitignore --ignore-unknown --check",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "npm run lint --fix",
"astro": "astro",
"prepare": "husky",
"validate": "npm run lint && npm run build"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/partytown": "^2.1.2",
"@astrojs/react": "^3.6.2",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@fontsource-variable/alkatra": "^5.0.14",
"@fontsource-variable/inter": "^5.0.20",
"@fontsource-variable/noto-sans-bengali": "^5.0.13",
"@fontsource-variable/work-sans": "^5.0.20",
"@googlemaps/markerclusterer": "^2.5.3",
"@nanostores/react": "^0.7.3",
"@sentry/astro": "^8.49.0",
"@tanstack/react-query": "^5.56.2",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@vis.gl/react-google-maps": "^1.1.3",
"astro": "^4.16.6",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"embla-carousel-autoplay": "^8.2.1",
"embla-carousel-react": "^8.2.1",
"fuse.js": "^7.0.0",
"nanostores": "^0.11.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-qr-code": "^2.0.15",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vaul": "^0.9.4"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@netlify/plugin-lighthouse": "^6.0.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"react-icons": "^5.3.0",
"typescript-eslint": "^8.3.0"
},
"lint-staged": {
"src/**/*.{ts,tsx,astro}": [
"npm run format",
"npm run lint:fix"
],
"**/*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
}
}