-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.75 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
80
81
82
83
{
"name": "lvlup-archive",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "npm run build:pagefind && astro build",
"preview": "astro preview",
"astro": "astro",
"format:write": "prettier --write \"src/**/*.{ts,tsx,astro}\" --cache",
"format:check": "prettier --check \"src/**/*.{ts,tsx,astro}\" --cache",
"lint": "eslint \"src/**/*.{ts,tsx,astro}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx,astro}\"",
"build:pagefind": "tsx --tsconfig ./tsconfig.scripts.json src/scripts/pagefind.ts"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/react": "^3.5.0",
"@astrojs/sitemap": "^3.1.5",
"@astrojs/tailwind": "^5.1.0",
"@fontsource-variable/inter": "^5.0.18",
"@fontsource-variable/jetbrains-mono": "^5.0.21",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@tailwindcss/typography": "^0.5.13",
"astro": "^4.10.2",
"astro-robots-txt": "^1.0.0",
"astro-seo": "^0.8.4",
"cheerio": "^1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"javascript-color-gradient": "^2.4.4",
"ky": "^1.4.0",
"lodash": "^4.17.21",
"lucide-react": "^0.390.0",
"next-mdx-remote": "^4.4.1",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.10.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-emoji": "^3.1.2",
"remark-gfm": "^3.0.1",
"strip-markdown": "^6.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.5"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/cli-progress": "^3.11.5",
"@types/javascript-color-gradient": "^2.4.2",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.2",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-tailwindcss": "^3.17.3",
"pagefind": "^1.1.0",
"prettier": "^3.3.2",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.4",
"tsx": "^4.15.5"
}
}