-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
{
"name": "ui-thing-starter",
"private": false,
"author": {
"name": "Behon Baker",
"email": "behon.baker@yahoo.com",
"url": "https://behonbaker.com"
},
"type": "module",
"scripts": {
"build": "nuxt build",
"clean": "rm -rf .nuxt dist node_modules package-lock.json && npm i",
"dev": "nuxt dev",
"format": "prettier --write .",
"generate": "nuxt generate",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"preview": "nuxt preview",
"test": "vitest",
"ui:add": "npx -y ui-thing@latest add"
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*": "npm run format"
},
"dependencies": {
"@nuxt/eslint": "^1.9.0",
"@nuxt/fonts": "^0.11.4",
"@nuxt/icon": "^2.0.0",
"@nuxtjs/color-mode": "^3.5.2",
"@pinia/nuxt": "^0.11.2",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/vite": "^4.1.12",
"@vueuse/nuxt": "^13.7.0",
"eslint": "^9.33.0",
"motion-v": "^1.7.0",
"nuxt": "^4.0.3",
"nuxt-og-image": "^5.1.9",
"pinia": "^3.0.3",
"reka-ui": "^2.4.1",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^2.1.0",
"tailwindcss": "^4.1.12",
"vue": "^3.5.19",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@ianvs/prettier-plugin-sort-imports": "^4.6.2",
"@iconify-json/lucide": "^1.2.63",
"@nuxt/test-utils": "^3.19.2",
"@pinia/testing": "^1.0.2",
"@testing-library/vue": "^8.1.0",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^18.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"playwright-core": "^1.55.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tw-animate-css": "^1.3.7",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20"
}
}