-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.69 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.69 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
{
"name": "hyperjump.tech",
"version": "1.1.0",
"private": true,
"scripts": {
"generate-locales": "simple-i18n-next -i ./locales -l en && bun scripts/fix-locales-types.js",
"generate-redirect": "bun .github/scripts/generate-redirect.js",
"generate-sitemap": "bun .github/scripts/generate-sitemap.js",
"dev": "bun run generate-locales && next dev",
"build": "bun run generate-locales && next build",
"postbuild": "bun run generate-sitemap && bun run generate-redirect",
"start": "bunx serve out",
"lint": "next lint",
"check-format": "prettier --check .",
"format": "prettier --write .",
"test:e2e": "playwright test -c playwright.config.ts",
"test:e2e:codegen": "wait-on http://localhost:3000 && playwright codegen",
"test:e2e:headed": "playwright test --headed -c playwright.config.ts",
"test:e2e:ui": "playwright test --ui -c playwright.config.ts",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@mdx-js/loader": "3.1.1",
"@mdx-js/react": "3.1.1",
"@n8n/chat": "0.61.0",
"@next/mdx": "16.1.1",
"@next/third-parties": "16.1.1",
"@radix-ui/react-accordion": "1.2.12",
"@radix-ui/react-aspect-ratio": "1.1.8",
"@radix-ui/react-avatar": "1.1.11",
"@radix-ui/react-context-menu": "2.2.16",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-icons": "1.3.2",
"@radix-ui/react-navigation-menu": "1.2.14",
"@radix-ui/react-separator": "1.1.8",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-toast": "1.2.15",
"@types/markdown-it": "14.1.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"framer-motion": "12.26.2",
"lucide-react": "0.562.0",
"markdown-it": "14.1.0",
"marked": "16.4.1",
"next": "16.1.1",
"next-seo": "7.1.0",
"next-themes": "0.4.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"rehype-stringify": "10.0.1",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"simple-i18n-next": "0.0.38",
"sonner": "2.0.7",
"tailwindcss-animate": "1.0.7",
"unified": "11.0.5",
"unist-util-visit": "5.0.0",
"uuid": "13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/mdx": "^2.0.13",
"@types/node": "^24",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"eslint": "^9",
"eslint-config-next": "^16.1.1",
"playwright": "^1.57.0",
"postcss": "^8",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"typescript": "^5",
"wait-on": "^9.0.3"
}
}