-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.01 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.01 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
{
"name": "test1",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PORT=3000 next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:404": "jest __tests__/404-check.test.js",
"test:ci": "jest __tests__/build-validation.test.js --ci --coverage --watchAll=false",
"test:production": "node scripts/test-production.js",
"predeploy": "npm run test:ci && npm run lint",
"generate-post-index": "node scripts/generate-post-index.js",
"preprocess-content": "node scripts/preprocess-content.js",
"generate-tsx-posts": "node scripts/generate-tsx-posts.js",
"generate-social-image": "node scripts/generate-social-image-puppeteer.js",
"seo": "npm run generate-post-index && npm run generate-tsx-posts && npm run seo:report",
"seo:index": "npm run generate-post-index",
"seo:posts": "npm run generate-tsx-posts",
"seo:tags": "npm run validate-tags && npm run seo:normalize",
"seo:normalize": "node scripts/normalize-tags.js",
"validate-tags": "node scripts/validate-tags.js",
"chatbot:content": "node scripts/generate-chatbot-content.js",
"chatbot:test": "node scripts/chatbot-content-selector-markdown.js",
"seo:report": "node scripts/seo-maintenance.js && cat seo-report.json",
"dev:setup": "npm run generate-post-index && npm run generate-tsx-posts && npm run seo:report",
"n8n:up": "docker compose -f docker-compose.n8n.yml up -d",
"n8n:down": "docker compose -f docker-compose.n8n.yml down",
"n8n:logs": "docker compose -f docker-compose.n8n.yml logs -f n8n",
"n8n:restart": "docker compose -f docker-compose.n8n.yml restart n8n",
"sb:start": "supabase start",
"sb:stop": "supabase stop",
"sb:reset": "supabase db reset",
"sb:link:local": "scripts/supabase-link-local.sh",
"sb:link:prod": "scripts/supabase-link-production.sh"
},
"dependencies": {
"@langchain/core": "^0.3.47",
"@langchain/openai": "^0.5.6",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.93.3",
"@tailwindcss/postcss": "^4.1.4",
"@tailwindcss/typography": "^0.5.16",
"@types/react-syntax-highlighter": "^15.5.13",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.2",
"@vercel/analytics": "^1.5.0",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.5.12",
"gray-matter": "^4.0.3",
"langchain": "^0.3.23",
"lucide-react": "^0.503.0",
"next": "15.5.12",
"openai": "^4.96.0",
"raw-loader": "^4.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"react-turnstile": "^1.1.5",
"remark-gfm": "^4.0.1",
"typescript": "^5.9.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"jest": "^30.1.3",
"puppeteer": "^24.23.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.4"
}
}