-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.37 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
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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"build:types": "rm -rf ./lib && vue-tsc --declaration --emitDeclarationOnly && tsc-alias -p tsconfig.json"
},
"dependencies": {
"@vueuse/core": "^11.0.1",
"@vueuse/motion": "^2.2.6",
"chart.js": "^4.4.3",
"clsx": "^2.1.1",
"deepmerge": "^4.3.1",
"embla-carousel-vue": "^8.2.1",
"radix-vue": "^1.9.4",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"vaul-vue": "^0.2.0",
"vue": "^3.4.21",
"vue-chartjs": "^5.3.1",
"vue-sonner": "^1.1.5",
"vue3-dropzone": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run format"
}
},
"lint-staged": {
"src/**/*.{ts,js,vue,css,}": [
"npm run lint",
"npm run format"
],
"components/**/*.{ts,js,vue,css,}": [
"npm run lint",
"npm run format"
]
},
"devDependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"@internationalized/date": "^3.5.5",
"@nuxt/content": "^2.12.1",
"@nuxt/eslint": "^0.3.13",
"@nuxt/image": "^1.7.0",
"@nuxtjs/color-mode": "^3.5.1",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/mdc": "^0.7.1",
"@vueuse/nuxt": "^11.0.1",
"autoprefixer": "^10.4.19",
"embla-carousel-autoplay": "^8.2.1",
"embla-carousel-class-names": "^8.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"highlight.js": "^11.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nuxt": "^3.11.1",
"nuxt-phosphor-icons": "^1.3.0",
"nuxt-shiki": "^0.3.0",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.3",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.3",
"unhead": "^1.9.4",
"vue-router": "^4.3.0",
"vue-tsc": "^2.1.6",
"vue-uuid": "^3.0.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}