-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "blog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier": "prettier --write .",
"db-sync": "xata codegen"
},
"dependencies": {
"@apostel/mdx": "^1.0.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.4",
"@vercel/analytics": "^1.3.1",
"@vercel/og": "^0.6.2",
"@vercel/speed-insights": "^1.0.12",
"@xata.io/client": "^0.29.4",
"class-variance-authority": "^0.7.0",
"highlight.js": "^11.9.0",
"next": "14.2.3",
"next-mdx-remote": "^5.0.0",
"next-sitemap": "^4.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-wrap-balancer": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@xata.io/cli": "^0.15.14",
"prettier": "^3.2.5",
"sass": "^1.77.2",
"typescript": "^5.4.5"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"printWidth": 120
}
}