-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.32 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.32 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@victortolbert/frontend",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@8.6.10",
"scripts": {
"prepare": "npx simple-git-hooks",
"build": "nuxt build",
"dev": "nuxt dev",
"dev:pwa": "VITE_PLUGIN_PWA=true nuxi dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"start": "node .output/server/index.mjs",
"start:generate": "npx serve .output/public",
"lint": "eslint . --fix",
"typecheck": "nuxi typecheck",
"release": "changelogen --release --push && pnpm publish",
"release:minor": "changelogen --release --minor --push && pnpm publish",
"release:major": "changelogen --release --major --push && pnpm publish",
"release:patch": "changelogen --release --patch --push && pnpm publish",
"up": "taze major -I"
},
"dependencies": {
"@pinia/nuxt": "^0.4.11",
"canvas-confetti": "^1.6.0",
"nuxt-swiper": "^1.2.0",
"pinia": "^2.1.6",
"v-wave": "^1.5.1",
"vue-sidebar-menu": "^5.2.10",
"vue3-google-map": "^0.15.0",
"vuex": "^4.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@faker-js/faker": "^8.0.2",
"@formkit/auto-animate": "^0.7.0",
"@headlessui/tailwindcss": "^0.1.3",
"@headlessui/vue": "^1.7.14",
"@heroicons/vue": "^2.0.18",
"@iconify-json/carbon": "^1.1.18",
"@iconify-json/heroicons": "^1.1.11",
"@iconify-json/heroicons-outline": "^1.1.6",
"@iconify-json/mdi": "^1.1.53",
"@iconify-json/simple-icons": "^1.1.62",
"@iconify-json/twemoji": "^1.1.11",
"@iconify-json/vscode-icons": "^1.1.25",
"@iconify/json": "2.2.95",
"@nuxt/content": "npm:@nuxt/content-edge@latest",
"@nuxt/devtools": "latest",
"@nuxthq/ui": "npm:@nuxthq/ui-edge@latest",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.17.1",
"@unocss/eslint-config": "^0.53.6",
"@unocss/nuxt": "^0.53.6",
"@vite-pwa/nuxt": "^0.1.0",
"@vueuse/integrations": "^10.2.1",
"@vueuse/math": "^10.2.1",
"@vueuse/motion": "^2.0.0",
"@vueuse/nuxt": "^10.2.1",
"@vueuse/sound": "^2.0.1",
"animate.css": "^4.1.1",
"axios": "^1.4.0",
"changelogen": "^0.5.4",
"changelogithub": "^0.12.12",
"commitizen": "^4.3.0",
"commitlint": "^17.6.7",
"commitlint-config-cz": "0.13.3",
"commitlint-config-unjs": "^1.0.1",
"conventional-changelog-cli": "^3.0.0",
"date-fns": "^2.30.0",
"eslint": "^8.45.0",
"lodash-es": "^4.17.21",
"msw": "^1.2.3",
"nuxt": "^3.6.5",
"sass": "^1.64.1",
"simple-git-hooks": "^2.9.0",
"tailwind-heropatterns": "^0.0.8",
"tailwindcss": "^3.3.3",
"tailwindcss-scrims": "^1.0.0",
"tailwindcss-theming": "3.0.0-beta.3",
"taze": "^0.11.2",
"typescript": "^5.1.6",
"vee-validate": "^4.10.8",
"vue-tsc": "^1.8.8",
"yup": "^1.2.0"
},
"overrides": {
"vue": "latest"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix"
},
"msw": {
"workerDirectory": "public"
}
}