-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.94 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.94 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
{
"name": "pf26",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"prebuild": "pnpm run types:generate",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"lint": "eslint --fix",
"lint:check": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"types:generate": "if [ \"$VERCEL\" != \"1\" ]; then source .env; fi && openapi-typescript ${STRAPI_URL:-http://localhost:1337}/api/documentation.json -o types/schema.ts && pnpm exec eslint --fix types/schema.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"@icons-pack/react-simple-icons": "^13.12.0",
"@tailwindcss/vite": "^4.2.1",
"@types/canvas-confetti": "^1.9.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"astro": "^5.17.1",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^10.0.2",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-better-tailwindcss": "^4.3.1",
"eslint-plugin-import-x": "^4.15.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"fitty": "^2.4.2",
"graphql-request": "^7.4.0",
"gsap": "^3.14.2",
"lucide-react": "^0.575.0",
"marked": "^17.0.4",
"openapi-fetch": "^0.17.0",
"openapi-typescript": "^7.13.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.3",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"shadcn": "^3.8.5",
"tw-animate-css": "^1.4.0"
}
}