generated from antfu-collective/vitesse
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.14 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.14 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
{
"name": "hoppscotch-website",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite-ssg build",
"preview": "vite preview",
"lint": "eslint . --fix --ignore-path .gitignore",
"format": "prettier . --write --ignore-path .gitignore",
"prepare": "husky"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/plus-jakarta-sans": "^5.2.8",
"@types/nprogress": "^0.2.3",
"@unhead/addons": "^1.11.18",
"@unhead/vue": "^1.11.18",
"@vueuse/core": "^12.5.0",
"@vueuse/gesture": "2.0.0",
"@vueuse/motion": "^2.2.6",
"medium-zoom": "^1.1.0",
"mustache": "^4.2.0",
"nprogress": "^0.2.0",
"unplugin-vue-markdown": "^28.3.0",
"vue": "^3.5.25",
"vue-gtag": "^2.0.1",
"vue-router": "^4.6.3",
"vue-tippy": "^6.7.1"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.77",
"@types/node": "^22.12.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.6",
"postcss-html": "^1.8.0",
"prettier": "^3.7.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"sass": "^1.94.2",
"sharp": "^0.33.5",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^37.0.0",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"unplugin-auto-import": "^19.3.0",
"unplugin-fonts": "^1.4.0",
"unplugin-icons": "^22.5.0",
"unplugin-vue-components": "^28.8.0",
"unplugin-vue-router": "^0.11.2",
"vite": "^6.0.11",
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-md": "^0.21.5",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-ssg": "^25.0.0",
"vite-ssg-sitemap": "^0.8.1",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.0"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{css,scss}": "stylelint --fix",
"*": "prettier --write"
}
}