-
Notifications
You must be signed in to change notification settings - Fork 428
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.26 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.26 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@cohere-ai/toolkit-frontend",
"version": "0.0.0",
"private": true,
"engines": {
"npm": ">=9",
"node": ">=20.12.2",
"pnpm": "9999",
"yarn": "9999"
},
"scripts": {
"dev": "next dev --port 4000",
"build": "next build",
"lint": "next lint",
"ts-lint": "tsc -noEmit -incremental -watch",
"format": "prettier --check \"**/*.{js,json,ts,tsx,md}\"",
"format:write": "prettier --write \"**/*.{js,json,ts,tsx,md}\"",
"next:build": "next build",
"start": "next start --port 4000",
"start:single-docker": "next build && next start --port 4000",
"start:single-docker-proxy": "next build && next start --port 8090",
"generate:client": "openapi-ts"
},
"dependencies": {
"@floating-ui/react": "^0.26.9",
"@headlessui/react": "^2.0.4",
"@microsoft/fetch-event-source": "^2.0.1",
"@popperjs/core": "^2.11.8",
"@react-hookz/web": "^23.1.0",
"@t3-oss/env-nextjs": "^0.7.1",
"@tanstack/react-query": "^5.8.9",
"@tanstack/react-query-devtools": "^5.8.9",
"@types/babel__core": "^7.1.19",
"@types/is": "^0.0.21",
"@types/mdast": "^4.0.3",
"@types/react": "^18.2.18",
"autoprefixer": "^10.4.7",
"axios": "^1.7.4",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"cross-fetch": "^4.0.0",
"csstype": "^3.0.10",
"form-data": "^4.0.0",
"hast-util-to-jsx-runtime": "^2.3.0",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"match-sorter": "^6.3.1",
"mdast-util-to-string": "^4.0.0",
"nanoid": "^3.3.8",
"next": "^14.2.21",
"next-client-cookies": "^1.1.1",
"next-runtime-env": "^3.2.2",
"node-html-parser": "^6.1.4",
"parse-domain": "^8.0.1",
"postcss": "^8.4.39",
"postcss-viewport-height-correction": "^1.1.1",
"react": "^18.2.0",
"react-aria": "^3.24.0",
"react-dom": "^18.2.0",
"react-flip-toolkit": "^7.1.0",
"react-google-drive-picker": "^1.2.2",
"react-hook-form": "^7.51.5",
"react-hotkeys-hook": "^4.5.0",
"react-lottie-player": "^1.4.3",
"react-markdown": "^9.0.1",
"react-popper": "^2.3.0",
"react-scroll-to-bottom": "^4.2.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-highlight": "6.0.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark": "^15.0.1",
"remark-directive": "^3.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"sonner": "^1.4.0",
"tailwind-merge": "^1.13.1",
"tailwindcss": "^3.1.6",
"typescript": "^5.4.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"zod": "^3.22.4",
"zustand": "4.3.1"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.48.1",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.14.185",
"@types/node": "^18.15.0",
"@types/react-scroll-to-bottom": "^4.2.0",
"@types/react-syntax-highlighter": "^15.5.11",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"postcss-100vh-fix": "^1.0.2",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "0.4.1"
}
}