-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.87 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "inprove",
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"postinstall": "nuxt prepare && prisma generate",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"preview": "nuxt preview",
"typecheck": "vue-tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@antfu/eslint-config": "^0.42.0",
"@aws-sdk/client-s3": "^3.388.0",
"@aws-sdk/s3-request-presigner": "^3.388.0",
"@aws-sdk/signature-v4-crt": "^3.387.0",
"@axiomhq/pino": "^0.1.3",
"@iconify-json/fluent-emoji": "^1.1.14",
"@iconify-json/material-symbols": "^1.1.55",
"@iconify-json/tabler": "^1.1.87",
"@lukemorales/query-key-factory": "^1.3.2",
"@nuxt/devtools": "^0.8.0",
"@nuxt/image": "^1.0.0-rc.1",
"@nuxtjs/html-validator": "^1.5.2",
"@nuxtjs/turnstile": "^0.6.0",
"@paralleldrive/cuid2": "^2.2.2",
"@popperjs/core": "^2.11.8",
"@prisma/client": "^5.1.1",
"@prisma/generator-helper": "^5.1.1",
"@qingu/vue-email": "^1.0.23",
"@tanstack/vue-query": "^4.32.6",
"@tiptap/extension-floating-menu": "^2.0.4",
"@tiptap/extension-image": "^2.0.4",
"@tiptap/extension-link": "^2.0.4",
"@tiptap/extension-placeholder": "^2.0.4",
"@tiptap/html": "^2.0.4",
"@tiptap/pm": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"@tiptap/vue-3": "^2.0.4",
"@trpc/client": "^10.37.1",
"@trpc/server": "^10.37.1",
"@types/node": "^20.5.0",
"@unocss/eslint-config": "^0.55.0",
"@unocss/nuxt": "^0.55.0",
"@vueuse/core": "^10.3.0",
"@vueuse/integrations": "^10.3.0",
"@vueuse/nuxt": "^10.3.0",
"aws-crt": "^1.17.1",
"chart.js": "^4.3.3",
"clsx": "^2.0.0",
"consola": "^3.2.3",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"eslint": "^8.47.0",
"lint-staged": "^14.0.0",
"nodemailer": "^6.9.4",
"nuxt": "^3.6.5",
"nuxt-security": "^0.14.4",
"nuxt-simple-robots": "^3.1.1",
"nuxt-simple-sitemap": "^3.1.8",
"pinia": "^2.1.6",
"pino": "^8.15.0",
"pino-http": "^8.4.0",
"pino-pretty": "^10.2.0",
"primevue": "^3.32.0",
"prisma": "^5.1.1",
"qrcode": "^1.5.3",
"resend": "^1.0.0",
"rrule": "^2.7.2",
"sass": "^1.65.1",
"sharp": "^0.32.4",
"simple-git-hooks": "^2.9.0",
"std-env": "^3.3.3",
"superjson": "^1.13.1",
"tailwind-merge": "^1.14.0",
"trpc-nuxt": "^0.10.7",
"tsx": "^3.12.7",
"unstorage": "^1.9.0",
"v-calendar": "^3.0.3",
"vitepress": "1.0.0-rc.20",
"vue": "^3.3.4",
"vue-tsc": "^1.8.8",
"zod": "^3.21.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}