-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.88 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.88 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
{
"name": "hebrewransliteration",
"description": "A web app for transliterating Hebrew",
"author": "Charles Loder <charles.w.loder@gmail.com>",
"license": "MIT",
"keywords": [
"hebrew",
"transliteration",
"SBL"
],
"type": "module",
"scripts": {
"predev": "node scripts/extract-schemas.ts",
"dev": "astro dev",
"prebuild": "node scripts/extract-schemas.ts",
"build": "astro build",
"extract-schemas": "node scripts/extract-schemas.ts",
"astro": "astro",
"lint": "eslint .",
"svelte-check": "svelte-check",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test:e2e": "playwright test",
"test": "npm run test:e2e"
},
"dependencies": {
"@astrojs/check": "^0.9.7",
"@astrojs/netlify": "^7.0.3",
"@astrojs/svelte": "^8.0.0",
"@codemirror/lang-javascript": "^6.2.5",
"@tabler/icons-svelte": "^3.40.0",
"@tailwindcss/vite": "^4.2.1",
"astro": "^6.0.4",
"google-auth-library": "^10.6.2",
"google-spreadsheet": "^5.2.0",
"hebrew-transliteration": "^2.9.1",
"svelte-codemirror-editor": "^2.1.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@internationalized/date": "^3.12.0",
"@lucide/svelte": "^0.577.0",
"@netlify/functions": "^5.1.5",
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"bits-ui": "^2.16.3",
"clsx": "^2.1.1",
"eslint": "^10.0.3",
"eslint-plugin-svelte": "^3.15.2",
"globals": "^17.4.0",
"mode-watcher": "^1.1.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "^5.54.0",
"svelte-check": "^4.3.5",
"svelte-sonner": "^1.1.0",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"tw-animate-css": "^1.4.0",
"typescript-eslint": "^8.57.1"
}
}