-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "@cubejs-docs/site",
"version": "2.0.0",
"keywords": [],
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap && rm -rf .next/cache",
"start": "next start",
"create-redirects": "ts-node --esm scripts/create-redirects.mjs",
"migrate-content": "ts-node ./scripts/migrate-content.ts",
"update-links": "ts-node --esm scripts/update-links.mjs"
},
"dependencies": {
"@cube-dev/marketing-ui": "0.0.1-beta.17",
"@cubejs-client/core": "^0.32.17",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-navigation-menu": "^1.1.3",
"classnames": "^2.3.2",
"cubedev-tracking": "^1.1.0",
"date-fns": "^2.30.0",
"next": "^14.2.10",
"next-sitemap": "^4.1.3",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-html-katex": "^4.0.1",
"remark-math": "^5.1.1",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.13.0",
"autoprefixer": "^10.4.14",
"front-matter": "^4.0.2",
"glob": "^9.3.4",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"remark": "^14.0.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx": "^2.3.0",
"sass": "^1.62.1",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vfile-reporter": "^7.0.5"
}
}