-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "microfolio",
"private": true,
"version": "0.9.0",
"engines": {
"node": ">=22.13.0"
},
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "node build.js",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"deploy": "NODE_ENV=production pnpm run build",
"optimize-images": "node scripts/generate-optimized-images.js",
"clean-images": "node scripts/clean-optimized-images.js",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"screenshots": "node scripts/screenshots.js"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.5",
"@iconify/json": "^2.2.514",
"@playwright/test": "^1.62.1",
"@sveltejs/adapter-auto": "^6.1.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@vincjo/datatables": "^2.8.1",
"dotenv": "^17.4.2",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.22.0",
"globals": "^16.5.0",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"sharp": "^0.34.5",
"svelte": "^5.56.8",
"tailwindcss": "^4.3.3",
"unplugin-icons": "^22.5.0",
"vite": "^7.3.6",
"vite-plugin-static-copy": "^3.4.0",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.20.0",
"dependencies": {
"@iconify/svelte": "^5.2.2",
"cursor-effects": "^1.0.18",
"exifreader": "^4.42.0",
"maplibre-gl": "^6.3.0",
"marked": "^16.4.2",
"svelte-i18n": "^4.0.1",
"yaml": "^2.9.0"
}
}