-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "nikosantis.dev-new",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"format:write": "prettier --write \"{app,lib,components}/**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"{app,lib,components}**/*.{ts,tsx,mdx}\" --cache"
},
"dependencies": {
"@fumadocs/content-collections": "1.1.4",
"@tailwindcss/typography": "0.5.13",
"@types/mdx": "2.0.13",
"@vercel/analytics": "1.3.1",
"clsx": "2.1.1",
"geist": "1.3.1",
"lucide-react": "0.445.0",
"next": "15.0.0-rc.0",
"react": "19.0.0-rc-f9ebd85a-20240925",
"react-dom": "19.0.0-rc-f9ebd85a-20240925",
"slugify": "1.6.6",
"tailwind-merge": "2.5.2"
},
"devDependencies": {
"@content-collections/core": "0.7.1",
"@content-collections/mdx": "0.1.3",
"@content-collections/next": "0.2.2",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "15.5.13",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "15.0.0-rc.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"shiki": "1.18.0",
"tailwindcss": "^3.4.13",
"typescript": "^5"
}
}