-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.9 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
{
"name": "ripwords",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"prepare": "husky"
},
"dependencies": {
"@nuxt/content": "^3.12.0",
"@nuxt/icon": "2.2.1",
"@nuxt/image": "^2.0.0",
"@nuxtjs/seo": "^3.4.0",
"@tailwindcss/vite": "^4.2.1",
"@tresjs/cientos": "^5.6.0",
"@tresjs/nuxt": "^5.5.0",
"@unhead/vue": "^2.1.12",
"@vee-validate/zod": "^4.15.1",
"@vueuse/core": "^14.2.1",
"@vueuse/motion": "^3.0.3",
"@vueuse/nuxt": "^14.2.1",
"better-sqlite3": "^12.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.577.0",
"mongodb": "^7.1.0",
"motion-v": "^2.0.0",
"nuxt": "^4.4.2",
"nuxt-security": "^2.5.1",
"reka-ui": "^2.9.2",
"shadcn-nuxt": "2.4.3",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"three": "^0.183.2",
"tw-animate-css": "^1.4.0",
"vee-validate": "^4.15.1",
"vue": "^3.5.30",
"vue-router": "^5.0.3",
"vue-sonner": "^2.0.9",
"zod": "^4.3.6"
},
"devDependencies": {
"@iconify-json/devicon": "^1.2.60",
"@iconify-json/ix": "^1.2.11",
"@iconify-json/line-md": "^1.2.16",
"@iconify-json/logos": "^1.2.10",
"@iconify-json/lucide": "^1.2.98",
"@iconify-json/meteor-icons": "^1.2.1",
"@iconify-json/skill-icons": "^1.2.4",
"@nuxt/fonts": "^0.14.0",
"@nuxtjs/color-mode": "^4.0.0",
"@types/three": "^0.183.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0"
},
"lint-staged": {
"*.{ts,vue,js,mjs}": [
"oxlint --fix",
"oxfmt"
],
"*.{json,css,md}": [
"oxfmt"
]
}
}