-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.42 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.42 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
105
106
107
108
109
110
111
112
113
114
{
"name": "coptic-compass",
"description": "Coptic Compass: a digital home for Coptic study with dictionary, grammar, publications, and learning tools.",
"version": "0.1.0",
"private": true,
"author": "Kyrillos Wannes",
"license": "MIT",
"engines": {
"node": "22.13.x"
},
"repository": {
"type": "git",
"url": "https://github.com/KyroHub/CopticCompass.git"
},
"homepage": "https://kyrilloswannes.com",
"bugs": {
"url": "https://github.com/KyroHub/CopticCompass/issues"
},
"keywords": [
"coptic",
"linguistics",
"dictionary",
"digital-humanities",
"nextjs",
"typescript",
"tailwindcss",
"recharts"
],
"scripts": {
"dev": "next dev",
"prebuild": "npm run data:grammar:export",
"build": "next build --webpack",
"start": "next start",
"db:migrations:list": "supabase migration list --linked",
"db:push:dry-run": "supabase db push --linked --dry-run",
"db:push": "supabase db push --linked",
"db:drift:check": "supabase db diff --linked --schema public",
"distill:extract": "node --experimental-strip-types scripts/distillExtractChunks.mts",
"distill:teacher": "node --experimental-strip-types scripts/distillGenerateTeacherData.mts",
"distill:build": "node --experimental-strip-types scripts/distillBuildDatasets.mts",
"distill:pipeline": "npm run distill:extract && npm run distill:teacher && npm run distill:build",
"data:grammar:export": "node --experimental-strip-types scripts/exportGrammar.mts",
"lint": "eslint --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:local": "npm run build && npm run test:e2e",
"knip": "knip",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/google": "^3.0.61",
"@ai-sdk/react": "^3.0.160",
"@huggingface/inference": "^4.13.15",
"@opentelemetry/api": "^1.9.1",
"@react-email/components": "^1.0.10",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.99.3",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"ai": "^6.0.158",
"browser-image-compression": "^2.0.2",
"html-to-image": "^1.11.13",
"jspdf": "^4.2.1",
"lucide-react": "^0.577.0",
"mammoth": "^1.12.0",
"next": "16.1.7",
"next-themes": "^0.4.6",
"openai": "^6.34.0",
"pdf-parse": "^1.1.1",
"pdf-to-img": "^6.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"recharts": "^3.8.0",
"remark-gfm": "^4.0.1",
"resend": "^6.9.4",
"swagger-ui-dist": "^5.32.1"
},
"devDependencies": {
"@next/env": "^16.1.7",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.7",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"knip": "^5.88.1",
"lint-staged": "^16.4.0",
"postcss": "^8.4.49",
"prettier": "^3.5.3",
"supabase": "^2.84.7",
"tailwindcss": "^4",
"typescript": "^5",
"vite": "^6.4.2",
"vitest": "^4.1.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --max-warnings=0",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}