-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "landing-10",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "pnpm i && astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write . --plugin=prettier-plugin-tailwindcss --plugin=prettier-plugin-astro"
},
"dependencies": {
"@astrojs/partytown": "^2.0.0",
"@astrojs/react": "^3.0.2",
"@astrojs/tailwind": "^5.0.0",
"@fontsource-variable/inter": "^5.0.8",
"@fontsource/poppins": "^5.0.8",
"@headlessui/react": "^1.7.17",
"@headlessui/tailwindcss": "^0.2.0",
"@heroicons/react": "^2.0.18",
"@types/canvas-confetti": "^1.6.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-image-gallery": "^1.2.1",
"astro": "^3.0.7",
"astro-critters": "^2.0.11",
"autoprefixer": "^10.4.15",
"canvas-confetti": "^1.6.0",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"postcss": "^8.4.31",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-image-gallery": "^1.3.0",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"daisyui": "^3.9.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-tailwindcss": "^0.5.4",
"sharp": "^0.32.6",
"tailwindcss-text-fill-stroke": "^1.1.2"
},
"volta": {
"node": "18.17.1",
"pnpm": "8.6.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --ignore-unknown --write --plugin=prettier-plugin-tailwindcss --plugin=prettier-plugin-astro"
}
}