-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.34 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.34 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "novu-docs",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "next build",
"dev": "PORT=3010 next dev",
"start": "next start",
"postinstall": "fumadocs-mdx",
"build:docs": "node ./scripts/generate-docs.mjs && node ./scripts/generate-types.mjs",
"post:build": "cp tsconfig.json .next/",
"generate:types": "node ./scripts/generate-types.mjs",
"lint": "next lint",
"lint:mdx": "eslint \"**/*.mdx\" --fix",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,mdx,json}\"",
"validate-links": "tsx scripts/validate-mdx-links.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.12.4",
"@inkeep/cxkit-react": "^0.5.82",
"@next/third-parties": "^15.2.1",
"@novu/api": "3.14.0",
"@novu/framework": "2.9.0",
"@novu/js": "3.14.0",
"@novu/react": "3.14.0",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-hover-card": "^1.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@scalar/api-client-react": "^1.1.39",
"@segment/analytics-next": "^1.77.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"fast-glob": "^3.3.3",
"fumadocs-core": "^15.2.11",
"fumadocs-docgen": "^2.0.0",
"fumadocs-mdx": "^11.5.7",
"fumadocs-openapi": "^8.1.2",
"fumadocs-twoslash": "^3.1.0",
"fumadocs-typescript": "^4.0.4",
"fumadocs-ui": "^15.2.11",
"geist": "^1.3.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.475.0",
"motion": "^12.4.10",
"next": "15.2.8",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-medium-image-zoom": "^5.2.14",
"remark": "^15.0.1",
"remark-directive": "^3.0.1",
"remark-gfm": "^4.0.1",
"remark-stringify": "^11.0.0",
"rimraf": "^6.0.1",
"shiki": "^2.5.0",
"source-map-support": "^0.5.21",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"vfile": "^6.0.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@fumadocs/cli": "^0.0.8",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.0.12",
"@types/glob": "^8.1.0",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "22.13.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/vfile": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"chalk": "^5.4.1",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.3",
"file-loader": "^6.2.0",
"glob": "^11.0.1",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"remark-lint-no-dead-urls": "^2.0.1",
"remark-lint-no-undefined-references": "^5.0.1",
"remark-mdx": "^3.1.0",
"remark-parse": "^11.0.0",
"remark-validate-links": "^13.1.0",
"source-map-support": "^0.5.21",
"svgo-loader": "^4.0.0",
"tailwindcss": "^4.0.12",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"url-loader": "^4.1.1"
}
}