-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"private": true,
"name": "@mintlify/chat",
"version": "0.0.1",
"author": "Mintlify, Inc.",
"type": "module",
"scripts": {
"build": "next build",
"build:all": "cd .. && yarn build",
"clean:build": "rimraf .next",
"clean:all": "rimraf node_modules .eslintcache && yarn clean:build",
"dev": "next dev",
"format": "prettier \"**/*.{css,js,ts,tsx,md,mdx}\" --write",
"format:check": "prettier \"**/*.{css,js,ts,tsx,md,mdx}\" --check",
"lint": "eslint . --cache",
"start": "next start",
"type": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@tailwindcss/typography": "^0.5.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.438.0",
"markdown-to-jsx": "^7.4.7",
"next": "14.2.7",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.5.2",
"uuid": "^11.0.3"
},
"devDependencies": {
"@mintlify/eslint-config": "1.0.5",
"@mintlify/eslint-config-next": "1.0.16",
"@mintlify/eslint-config-typescript": "1.0.10",
"@mintlify/prettier-config": "1.0.4",
"@mintlify/ts-config": "2.0.2",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"postcss": "^8",
"prettier": "^3.3.2",
"rimraf": "^5.0.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}