-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
75 lines (75 loc) · 2.16 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
{
"name": "tiptap-docs",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build:next",
"build:next": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"standalone": "npm run build && cp -r ./.next/static ./.next/standalone/.next && cp -r public ./.next/standalone && node .next/standalone/server.js"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.13.5",
"@codesandbox/sandpack-themes": "^2.0.21",
"@mantine/hooks": "^7.6.2",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.1.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-slot": "^1.0.2",
"@tiptap/extension-focus": "^2.4.0",
"@types/mdx": "^2.0.11",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"front-matter": "^4.0.2",
"iframe-resizer-react": "1.0.13",
"lucide-react": "^0.358.0",
"next": "^14.2.14",
"react": "^18",
"react-dom": "^18",
"react-instantsearch": "^7.7.0",
"rehype-highlight": "^7.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"sharp": "^0.33.4",
"short-uuid": "^4.2.2",
"slugify": "^1.6.6",
"sonner": "^1.4.3",
"tw-merge": "^0.0.1-alpha.3",
"typesense-instantsearch-adapter": "^2.8.0",
"yarn": "^1.22.22"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8",
"prettier": "3.2.5",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
}
}