-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.76 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
{
"name": "docs",
"version": "0.1.0",
"private": true,
"description": "NotionPresso Documentation site built with Next.js",
"author": {
"name": "notionpresso",
"email": "[email protected]",
"url": "https://notionpresso.com"
},
"homepage": "https://notionpresso.com",
"repository": {
"type": "git",
"url": "https://github.com/notionpresso/docs"
},
"bugs": {
"url": "https://github.com/notionpresso/docs/issues"
},
"keywords": [
"nextjs",
"react",
"typescript",
"tailwindcss",
"documentation"
],
"license": "MIT",
"scripts": {
"dev": "next dev",
"prod": "next build && next start",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"dependencies": {
"@heroicons/react": "2.1.5",
"@notionpresso/react": "^0.0.5",
"@types/hast": "3.0.4",
"clsx": "2.1.1",
"gray-matter": "4.0.3",
"highlight.js": "^11.10.0",
"next": "14.2.11",
"next-sitemap": "^4.2.3",
"next-themes": "0.3.0",
"react": "^18",
"react-dom": "^18",
"react-markdown": "9.0.1",
"rehype-highlight": "7.0.0",
"rehype-raw": "7.0.0",
"remark": "15.0.1",
"remark-gfm": "4.0.0",
"remark-html": "16.0.1",
"tailwind-merge": "2.5.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"**/*.{json,css,scss,md}": [
"prettier --write"
]
}
}