-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "microfolio",
"version": "1.0.1",
"description": "Static portfolio generator for creatives — folders and Markdown in, a fast site out",
"license": "MIT",
"homepage": "https://aker-dev.github.io/microfolio/",
"repository": {
"type": "git",
"url": "git+https://github.com/aker-dev/microfolio.git"
},
"bugs": {
"url": "https://github.com/aker-dev/microfolio/issues"
},
"private": true,
"engines": {
"node": ">=22.13.0",
"pnpm": ">=11.22.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",
"demo": "node scripts/install-demo.js",
"generate-demo": "node scripts/generate-demo-projects.js",
"icons": "node scripts/icons.js",
"update-microfolio": "node scripts/update-microfolio.js",
"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",
"test:smoke": "NODE_ENV=production playwright test --config playwright.smoke.config.js",
"screenshots": "node scripts/screenshots.js"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.5",
"@playwright/test": "^1.62.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.3",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@vincjo/datatables": "^2.8.1",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.23.0",
"globals": "^16.5.0",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"sharp": "^0.35.3",
"svelte": "^5.56.9",
"tailwindcss": "^4.3.3",
"vite": "^7.3.6",
"vite-plugin-static-copy": "^3.4.0",
"vitest": "^4.1.11"
},
"dependencies": {
"cursor-effects": "^1.0.18",
"exifreader": "^4.43.0",
"maplibre-gl": "^6.4.1",
"marked": "^16.4.2",
"svelte-i18n": "^4.0.1",
"yaml": "^2.9.0"
}
}