-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "readability",
"version": "0.1.0",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "node scripts/run-migration.mjs",
"bible:fetch": "node scripts/fetch-formatted-bible.mjs",
"bible:seed": "node scripts/seed-bible.mjs",
"offline:build": "node scripts/build-offline-data.mjs",
"build:mobile": "node scripts/build-mobile.mjs",
"mobile:sync": "node scripts/build-mobile.mjs && cap sync",
"mobile:open": "cap open android"
},
"dependencies": {
"@capacitor/android": "^8.4.0",
"@capacitor/cli": "^8.4.0",
"@capacitor/core": "^8.4.0",
"@capacitor/local-notifications": "^8.2.0",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.97.0",
"@vercel/analytics": "^2.0.1",
"darkreader": "^4.9.128",
"html-react-parser": "^5.2.17",
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"d3-contour": "^4.0.2",
"eslint": "^9.0.0",
"eslint-config-next": "^15.0.0",
"geotiff": "^3.0.5",
"pg": "^8.18.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.0"
}
}