-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.8 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
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
{
"name": "rule-engine-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo --hostname=0.0.0.0",
"build": "ANALYZE=false next build",
"build:analyze": "ANALYZE=true pnpm build",
"start": "next start",
"test": "env NODE_ENV=test jest --ci --coverage",
"test:watch": "jest --watch",
"lint": "next lint",
"fix:lint": "eslint --fix src/ --ext .js,.jsx,.ts,.tsx",
"fix:format": "biome format . --write",
"fix:biome": "biome check . --apply-unsafe && biome format . --write",
"fix": "pnpm run fix:lint && pnpm run fix:format",
"dr:build": "npx declarative-routing build",
"dr:build:watch": "npx declarative-routing build --watch",
"openapi": "npm run openapi:yaml && npm run openapi:html",
"openapi:yaml": "ts-node ./src/routes/openapi.ts",
"openapi:html": "npx @redocly/cli build-docs openapi-docs.yml"
},
"dependencies": {
"@hookform/resolvers": "3.4.2",
"@huggingface/inference": "2.7.0",
"@radix-ui/react-alert-dialog": "1.0.5",
"@radix-ui/react-checkbox": "1.0.4",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-separator": "1.0.3",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-switch": "1.0.3",
"@radix-ui/react-tooltip": "1.0.7",
"@vercel/analytics": "1.3.0",
"ai": "3.0.19",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"eventsource-parser": "1.1.2",
"framer-motion": "11.2.6",
"highlight.js": "11.9.0",
"katex": "0.16.10",
"lodash": "4.17.21",
"nanoid": "4.0.2",
"next": "14.2.3",
"next-themes": "0.3.0",
"query-string": "9.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.51.5",
"react-icons": "5.2.1",
"react-markdown": "8.0.7",
"react-scroll-to-bottom": "4.2.0",
"rehype-katex": "6.0.3",
"remark-gfm": "3.0.1",
"remark-math": "5.1.1",
"tailwind-merge": "2.3.0",
"tailwindcss-animate": "1.0.7",
"uuid": "9.0.1",
"zod": "3.23.8",
"zustand": "4.5.2"
},
"devDependencies": {
"@asteasolutions/zod-to-openapi": "7.0.0",
"@biomejs/biome": "1.7.3",
"@next/bundle-analyzer": "14.2.3",
"@tailwindcss/typography": "0.5.13",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "14.5.2",
"@types/eslint": "8.56.10",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.4",
"@types/node": "20.12.12",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@types/react-katex": "3.0.4",
"@types/react-scroll-to-bottom": "4.2.5",
"@types/testing-library__jest-dom": "5.14.9",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@welldone-software/why-did-you-render": "8.0.1",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-oxlint": "0.3.0",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-tailwindcss": "3.17.0",
"eslint-plugin-unused-imports": "3.2.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"next-router-mock": "0.9.13",
"oxlint": "0.3.5",
"postcss": "8.4.38",
"tailwindcss": "3.4.3",
"ts-jest": "29.1.3",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"yaml": "2.4.2"
}
}