-
Notifications
You must be signed in to change notification settings - Fork 549
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
{
"name": "nexent",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"check-all": "npm run type-check && npm run lint && npm run format:check && npm run build"
},
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@dicebear/core": "^9.2.2",
"@dicebear/icons": "^9.2.2",
"@radix-ui/react-scroll-area": "^1.2.2",
"@tanstack/react-query": "^5.90.12",
"antd": "^6.1.3",
"antd-style": "^4.1.0",
"autoprefixer": "^10.4.20",
"bootstrap-icons": "^1.11.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dicebear": "^9.2.2",
"dotenv": "^16.4.7",
"framer-motion": "^12.23.6",
"github-markdown-css": "^5.8.1",
"http-proxy": "^1.18.1",
"i18next": "^25.2.1",
"katex": "^0.16.11",
"lucide-react": "^0.454.0",
"mermaid": "^11.12.0",
"next": "^15.5.9",
"next-i18next": "^15.4.2",
"next-themes": "^0.4.4",
"react": "18.2.0",
"react-d3-tree": "^3.6.6",
"react-dom": "18.2.0",
"react-hook-form": "^7.54.1",
"react-i18next": "^16.5.4",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^16.1.0",
"rehype-katex": "^6.0.3",
"rehype-raw": "^7.0.0",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-rehype": "^11.1.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"uuid": "^11.1.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@types/node": "22.15.16",
"@types/react": "18.3.20",
"@types/react-dom": "18.3.6",
"eslint": "^9.34.0",
"eslint-config-next": "15.5.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.17",
"typescript": "5.8.3"
}
}