-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.02 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.02 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "famfolio",
"version": "0.9.0",
"description": "A modern, configurable Vue 3 portfolio template with RTL support, animations, and dark mode",
"author": "F2had",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"dev:demo": "CONFIG_FILE=demo vite",
"build": "run-p type-check \"build-only {@}\" -- && cp dist/index.html dist/404.html",
"build:demo": "CONFIG_FILE=demo run-p type-check \"build-only {@}\" -- && cp dist/index.html dist/404.html",
"preview": "vite preview",
"preview:demo": "CONFIG_FILE=demo vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix --cache",
"lint": "run-s lint:*",
"format": "prettier --write --experimental-cli src/",
"generate:og": "bun run scripts/generate-og.ts",
"generate:og:all": "bun run scripts/generate-og.ts --locale=all",
"ci:test": "act push --container-architecture linux/amd64",
"ci:test:lint": "act push --container-architecture linux/amd64 -j lint-and-build",
"ci:test:security": "act push --container-architecture linux/amd64 -j security",
"ci:test:lighthouse": "act push --container-architecture linux/amd64 -j lighthouse",
"lighthouse": "bun run build-only && npx @lhci/cli autorun",
"prepare": "husky"
},
"dependencies": {
"@fontsource/ibm-plex-sans-arabic": "^5.2.8",
"@fontsource/outfit": "^5.2.8",
"@fontsource/source-sans-3": "^5.2.9",
"@fontsource/tajawal": "^5.2.7",
"@mdi/font": "^7.4.47",
"@vueuse/core": "^14.1.0",
"@vueuse/motion": "^3.0.3",
"vue": "^3.5.25",
"vue-i18n": "^11.2.2",
"vue-router": "^4.6.3",
"vuetify": "^3.11.2"
},
"lint-staged": {
"*.{js,ts,vue}": [
"oxlint --fix -D correctness --max-warnings 1",
"eslint --fix --cache --max-warnings 1",
"prettier --write --experimental-cli"
],
"*.{json,md,yaml,yml,scss,css}": [
"prettier --write --experimental-cli"
]
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.79",
"@iconify-json/simple-icons": "^1.2.62",
"@modyfi/vite-plugin-yaml": "^1.1.1",
"@prettier/plugin-oxc": "^0.0.5",
"@tsconfig/node24": "^24.0.3",
"@types/node": "^24.10.1",
"@types/sharp": "^0.32.0",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.1",
"eslint-plugin-oxlint": "~1.29.0",
"eslint-plugin-vue": "~10.5.1",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"npm-run-all2": "^8.0.4",
"oxlint": "~1.29.0",
"prettier": "3.6.2",
"sass": "^1.94.2",
"sharp": "^0.34.5",
"typescript": "~5.9.0",
"unplugin-icons": "^22.5.0",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-vue-devtools": "^8.0.5",
"vue-tsc": "^3.1.5",
"yaml": "^2.8.2"
}
}