-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
{
"name": "ai-cat-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "vitest",
"test:ci": "vitest run --coverage",
"dev": "next dev -p 22222",
"build": "next build",
"start": "next start -p 22222",
"lint:eslint": "eslint --cache .",
"fix:eslint": "npm run lint:eslint -- --fix",
"lint": "run-s lint:*",
"format": "run-s fix:*",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.5",
"@sentry/nextjs": "8.35.0",
"@types/node": "22.8.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@upstash/ratelimit": "^2.0.4",
"@upstash/redis": "^1.34.3",
"@vercel/functions": "1.5.0",
"autoprefixer": "10.4.20",
"next": "15.0.1",
"postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "9.0.1",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "3.8.0",
"@chromatic-com/storybook": "^3.1.0",
"@eslint-react/eslint-plugin": "1.15.0",
"@next/env": "^15.0.1",
"@storybook/addon-a11y": "^8.3.6",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-onboarding": "^8.3.6",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^8.3.6",
"@storybook/nextjs": "^8.3.6",
"@storybook/react": "^8.3.6",
"@storybook/test": "^8.3.6",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.0.1",
"@types/uuid": "^10.0.0",
"@types/webspeechapi": "0.0.29",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "^2.1.3",
"ajv": "8.17.1",
"chromatic": "^11.16.1",
"eslint": "9.13.0",
"eslint-plugin-format": "0.1.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "0.4.14",
"eslint-plugin-tailwindcss": "^3.17.5",
"jsdom": "^25.0.1",
"msw": "^2.5.1",
"msw-storybook-addon": "2.0.3",
"npm-run-all": "^4.1.5",
"storybook": "^8.3.6",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"msw": {
"workerDirectory": "public"
}
}