-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.09 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": "markket-next",
"version": "0.6.7",
"private": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"packageManager": "yarn@1.22.22",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=24",
"npm": ">=11.0.0"
},
"scripts": {
"dev": "next dev --port 4020 --hostname 0.0.0.0",
"build": "next build",
"start": "next start",
"check-types": "tsc --noEmit"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"@mantine/carousel": "^9.0.1",
"@mantine/code-highlight": "^9.0.1",
"@mantine/core": "^9.0.1",
"@mantine/form": "^9.0.1",
"@mantine/hooks": "^9.0.1",
"@mantine/notifications": "^9.0.1",
"@mantine/tiptap": "^9.0.1",
"@tabler/icons-react": "^3.44.0",
"@tiptap/extension-image": "^3.22.2",
"@tiptap/extension-link": "^3.22.2",
"@tiptap/extension-placeholder": "^3.22.2",
"@tiptap/pm": "^3.22.2",
"@tiptap/react": "^3.22.2",
"@tiptap/starter-kit": "^3.22.2",
"date-fns": "^4.2.1",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.4.10",
"next": "16.2.10",
"next-swagger-doc": "^0.4.1",
"posthog-js": "1.372.1",
"posthog-node": "5.30.4",
"qs": "^6.14.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"remarkable": "^2.0.1",
"sass": "^1.99.0",
"stripe": "^17.7.0",
"tiptap-markdown": "^0.9.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20.19.41",
"@types/qs": "^6.9.18",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/remarkable": "^2.0.8",
"@types/swagger-ui-react": "^5.18.0",
"eslint": "10.6.0",
"eslint-config-next": "16.2.10",
"postcss": "^8.5.14",
"tailwindcss": "^3.4.1",
"turbo": "^2.9.14",
"typescript": "6.0.3"
},
"resolutions": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
},
"overrides": {
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3"
}
}