-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "josephhansen.dev",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"precommit": "npm run build && bash minify.sh && rm -rf ../built-josephhansen-dev/built-josephhansen-dev/assets && cp -r dist/* ../built-josephhansen-dev/built-josephhansen-dev && node sitemap.js",
"buildbot": "node commit.js && cd ../built-josephhansen-dev/built-josephhansen-dev/ && node ../../josephhansen.dev/commit.js"
},
"dependencies": {
"@headlessui/tailwindcss": "^0.2.0",
"@headlessui/vue": "^1.7.16",
"@img-comparison-slider/vue": "^8.0.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"chroma-js": "^2.4.2",
"date-fns": "^3.0.6",
"lucide-vue-next": "^0.303.0",
"pdfvuer": "^2.0.1",
"simple-icons": "^11.2.0",
"sitemap": "^7.1.1",
"swiper": "^11.0.5",
"vue": "^3.3.11",
"vue-matomo": "^4.2.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.2",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"prettier": "3.2.4",
"tailwindcss": "^3.4.0",
"uglify-js": "^3.17.4",
"vite": "^5.0.13"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write src/"
}
}