-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "vidur",
"description": "A truely composable, open source, recruiting software.",
"version": "0.0.3",
"repository": "https://github.com/profilecity/vidur",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"migration:generate": "drizzle-kit generate",
"migration:apply": "drizzle-kit migrate",
"drizzle:update": "drizzle-kit up",
"release": "changelogen --release && git push --follow-tags",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type:check": "npx nuxi typecheck",
"prepare": "husky"
},
"dependencies": {
"@internationalized/date": "^3.5.6",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/tailwindcss": "6.12.2",
"@profilecity/unstorage-s3-driver": "^0.0.3",
"@tailwindcss/forms": "^0.5.9",
"@tiptap/core": "^2.9.1",
"@tiptap/extension-heading": "^2.9.1",
"@tiptap/extension-text-align": "^2.9.0",
"@tiptap/pm": "^2.9.0",
"@tiptap/starter-kit": "^2.9.0",
"@tiptap/vue-3": "^2.9.0",
"@types/quill": "^2.0.14",
"@vee-validate/nuxt": "^4.13.1",
"@vee-validate/zod": "^4.13.1",
"@vueuse/core": "^11.1.0",
"class-variance-authority": "^0.7.0",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "^0.33.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"nuxt": "^3.13.2",
"nuxt-auth-utils": "^0.5.7",
"nuxt-cropper": "^0.0.4",
"nuxt-icon": "^0.6.10",
"pg": "^8.13.0",
"radix-vue": "^1.9.5",
"tailwind-merge": "^2.5.5",
"uncrypto": "^0.1.3",
"unstorage": "^1.12.0",
"vue": "^3.5.12",
"vue-router": "^4.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/pg": "^8.11.10",
"changelogen": "^0.5.7",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vue-tsc": "^2.1.6"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write"
]
}
}