-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.95 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
{
"name": "personalweb",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"prepare": "tsx scripts/install-git-hooks.ts",
"precommit:content": "tsx scripts/precommit-content.ts",
"generate-articles": "tsx scripts/generate-articles-json.ts",
"generate-albums": "tsx scripts/generate-albums-json.ts",
"process-albums": "tsx scripts/process-albums.ts",
"normalize-album-images": "tsx scripts/normalize-album-images.ts",
"generate-songs": "tsx scripts/generate-songs-json.ts",
"optimize-images": "tsx scripts/optimize-images.ts"
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/geist-mono": "^5.2.8",
"@phosphor-icons/vue": "^2.2.1",
"canvas-confetti": "^1.9.3",
"marked": "^17.0.1",
"pinia": "^3.0.3",
"vue": "^3.5.18",
"vue-i18n": "^11.4.7",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@tsconfig/node22": "^22.0.2",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^22.19.7",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.0.1",
"@vue/compiler-sfc": "^3.5.21",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/runtime-dom": "^3.5.21",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.31.0",
"eslint-plugin-vue": "^10.4.0",
"jiti": "^2.4.2",
"less": "^4.6.7",
"npm-run-all2": "^8.0.4",
"prettier": "3.6.2",
"sharp": "^0.35.3",
"tailwindcss": "^4.3.3",
"tsx": "^4.7.1",
"typescript": "~5.8.0",
"vite": "^6.4.1",
"vite-plugin-vue-devtools": "^8.0.0",
"vue-tsc": "^3.0.4"
}
}