-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 KB
/
package.json
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
{
"name": "danielturcich.com",
"description": "My website, a bio and portfolio site.",
"version": "1.0.0",
"type": "module",
"private": true,
"author": {
"email": "[email protected]",
"name": "Daniel Turcich",
"url": "https://danielTurcich.com"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"dev:network": "vite --host",
"build": "vite build --emptyOutDir && pnpm generate:404 && pnpm add:cname",
"lint-fix": "biome lint --write",
"lint-check": "biome lint",
"format-fix": "biome format --write",
"format-check": "biome format",
"type-check": "vue-tsc --noEmit",
"checks": "pnpm lint-check && pnpm format-check && pnpm type-check",
"preview": "vite preview",
"prepare": "husky",
"add:cname": "cd dist && echo 'danielturcich.com' > CNAME",
"generate:404": "cd dist && cp index.html 404.html"
},
"dependencies": {
"dialog-polyfill": "^0.5.6",
"pinia": "^2.2.2",
"vue": "^3.5.8",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.7.0",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"globals": "^15.9.0",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"rollup-plugin-gzip": "^4.0.1",
"rollup-plugin-swc-minify": "^1.1.2",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vite": "^5.4.7",
"vue-tsc": "^2.1.6"
}
}