-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.27 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.27 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
{
"name": "bbc-frontend",
"type": "module",
"version": "1.0.0",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier .",
"format:write": "prettier . --write",
"flint": "pnpm run format:write && pnpm run lint:fix",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"build:pwa": "node scripts/package-pwa.mjs",
"build:pwa:linux": "node scripts/package-pwa.mjs --platform=linux",
"build:pwa:win": "node scripts/package-pwa.mjs --platform=windows",
"build:pwa:mac": "node scripts/package-pwa.mjs --platform=mac",
"build:pwa:android": "node scripts/package-pwa.mjs --platform=android"
},
"packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402",
"dependencies": {
"@astrojs/sitemap": "^3.7.2",
"@astrojs/svelte": "^7.2.5",
"@floating-ui/dom": "^1.7.6",
"@fontsource-variable/nunito": "^5.2.7",
"@fontsource/zen-maru-gothic": "^5.2.8",
"@tailwindcss/vite": "^4.2.4",
"@types/file-saver": "^2.0.7",
"astro": "^5.18.1",
"astro-remote": "^0.3.4",
"daisyui": "^5.5.19",
"fflate": "^0.8.2",
"file-saver": "^2.0.5",
"file-type": "^21.3.4",
"idb-keyval": "^6.2.2",
"lucide-svelte": "^0.577.0",
"svelte": "^5.55.5",
"svelte-flags": "^3.0.1",
"svelte-image-viewer": "^6.0.0",
"tailwindcss": "^4.2.4",
"typescript": "^5.9.3",
"workbox-build": "^7.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/wicg-file-system-access": "^2023.10.7",
"@vite-pwa/assets-generator": "^1.0.2",
"@vite-pwa/astro": "^1.2.0",
"electron": "^40.9.3",
"electron-builder": "^26.8.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.4",
"sharp": "^0.34.5",
"sharp-ico": "^0.1.5",
"to-ico": "^1.1.5",
"typescript-eslint": "^8.59.2",
"vite-plugin-pwa": "^1.3.0",
"workbox-window": "^7.4.1"
}
}