-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.99 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
104
105
{
"name": "chat-yesnow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"postinstall": "prisma generate",
"build": "./build.sh",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"e2e:server": "cross-env NEXT_PUBLIC_DISABLE_RECAPTCHA='$(date)' npm run build && npm run start",
"e2e:dev": "npx playwright test --ui",
"e2e:server:dev": "cross-env NEXT_PUBLIC_DISABLE_RECAPTCHA='$(date)' npm run dev",
"format": "biome check --apply-unsafe src || biome format --write src",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@anthropic-ai/sdk": "0.27.3",
"@hookform/resolvers": "3.1.0",
"@prisma/client": "5.18.0",
"@szhsin/react-menu": "4.2.2",
"@tanstack/react-query": "4.36.1",
"@vercel/edge-config": "1.2.1",
"@vercel/speed-insights": "1.0.12",
"dataloader": "2.2.2",
"dayjs": "1.11.13",
"js-cookie": "3.0.5",
"micromark": "4.0.0",
"mustache": "4.2.0",
"next": "14.2.15",
"next-auth": "4.24.8",
"openai": "4.55.9",
"randomstring": "1.3.0",
"react": "18.3.1",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.3.1",
"react-hook-form": "7.52.2",
"react-icons": "5.2.1",
"react-markdown": "9.0.1",
"react-modal": "3.16.1",
"react-syntax-highlighter": "15.5.0",
"remark-parse": "11.0.0",
"sanitize.css": "13.0.0",
"sass": "1.77.8",
"seedrandom": "3.0.5",
"ua-parser-js": "1.0.39",
"yaml": "2.5.1",
"zod": "3.23.8",
"zod-to-json-schema": "3.23.3"
},
"devDependencies": {
"@axe-core/playwright": "4.10.0",
"@biomejs/biome": "1.9.3",
"@eslint/config-array": "0.18.0",
"@eslint/object-schema": "2.1.4",
"@next/bundle-analyzer": "14.2.15",
"@playwright/test": "1.48.0",
"@storybook/addon-essentials": "8.3.5",
"@storybook/addon-interactions": "8.3.5",
"@storybook/addon-links": "8.3.5",
"@storybook/addon-onboarding": "8.3.5",
"@storybook/blocks": "8.3.5",
"@storybook/nextjs": "8.3.5",
"@storybook/react": "8.3.5",
"@storybook/testing-library": "0.2.2",
"@testing-library/react": "16.0.1",
"@types/js-cookie": "3.0.6",
"@types/mustache": "4.2.5",
"@types/node": "20.14.14",
"@types/randomstring": "1.3.0",
"@types/react": "18.3.11",
"@types/react-copy-to-clipboard": "5.0.7",
"@types/react-dom": "18.3.1",
"@types/react-modal": "3.16.3",
"@types/react-syntax-highlighter": "15.5.13",
"@types/seedrandom": "3.0.8",
"@types/ua-parser-js": "0.7.39",
"@vitejs/plugin-react": "4.3.2",
"aria-query": "5.3.2",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"eslint-config-next": "14.2.15",
"eslint-plugin-storybook": "0.9.0",
"file-system-cache": "2.4.7",
"filenamify": "6.0.0",
"husky": "9.1.6",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"msw": "2.4.10",
"node-html-parser": "6.1.13",
"prisma": "5.18.0",
"storybook": "8.3.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vercel": "37.8.0",
"vitest": "2.1.2"
},
"lint-staged": {
"*": "npm run format"
}
}