-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.92 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
{
"name": "botsmann",
"version": "1.0.0",
"engines": {
"node": ">=20"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:ci": "npm ci && npm run build",
"start": "next start",
"test": "vitest run",
"test:e2e": "NODE_ENV=test playwright test",
"test:watch": "vitest run --watch",
"test:db": "tsx scripts/test-db-connection.ts",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"check:selfhost": "bash scripts/ci/no-hosted-supabase.sh",
"verify": "npm run format:check && npm run lint && npm run typecheck && npm run check:selfhost && npm run test && npm run build",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.980.0",
"@giscus/react": "^3.1.0",
"@headlessui/react": "^2.2.0",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.47.10",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.16",
"@xenova/transformers": "^2.17.2",
"ai-kit": "github:bitbaum/ai-kit#v0.5.0",
"autoprefixer": "^10.4.17",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"next": "^16.2.12",
"next-mdx-remote": "^6.0.0",
"pdf-parse": "^2.4.5",
"postcss": "^8.5.10",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwindcss": "^3.4.1",
"zod": "^3.24.1"
},
"overrides": {
"glob": "^10.5.0",
"fast-xml-parser": "^5.7.0",
"protobufjs": "^7.6.5",
"ws": "^8.21.1",
"handlebars": "^4.7.9",
"flatted": "^3.4.2",
"postcss": "$postcss",
"@babel/core": "^7.29.6",
"yaml": "^2.8.3",
"sharp": "^0.35.3",
"picomatch@2": "2.3.2",
"picomatch@4": "4.0.5",
"minimatch@3": "3.1.5",
"minimatch@9": "9.0.9",
"js-yaml@3": "3.15.0",
"js-yaml@4": "4.3.0"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/node": "^20.17.17",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"daisyui": "^5.0.43",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^17.3.0",
"node-mocks-http": "^1.17.2",
"prettier": "^3.3.3",
"typescript": "^5.7.3",
"vitest": "^4.1.11"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md,css,scss,html,yml,yaml}": "prettier --write"
}
}