-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
{
"name": "apibeer",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "prisma generate && nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install",
"clean": "nuxt cleanup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prisma:setup": "prisma generate && prisma migrate deploy && prisma db seed",
"prisma:dev": "prisma migrate dev",
"prisma:studio": "prisma studio",
"deps:up": "nlx taze -I",
"private:env:download": "gh dl OsmanthusBeer/private .env",
"private:env:upload": "gh up OsmanthusBeer/private .env",
"private:docs:download": "gh dl OsmanthusBeer/private docs/",
"private:docs:upload": "gh up OsmanthusBeer/private docs/*.md",
"deploy": "kamal deploy"
},
"dependencies": {
"@iconify-json/mdi": "^1.1.64",
"@iconify-json/simple-icons": "^1.1.90",
"@lukeed/ms": "^2.0.2",
"@nuxt/ui": "^2.13.0",
"@prisma/client": "^5.9.1",
"@trpc/client": "^10.45.0",
"@trpc/server": "^10.45.0",
"@vue-email/nuxt": "^0.8.12",
"@vueuse/core": "^10.7.2",
"@vueuse/nuxt": "^10.7.2",
"@vueuse/router": "^10.7.2",
"bcryptjs": "^2.4.3",
"lowdb": "^7.0.1",
"nodemailer": "^6.9.9",
"nuxt": "^3.10.0",
"splitpanes": "^3.1.5",
"trpc-nuxt": "^0.10.17",
"zod": "^3.22.4",
"zod-validation-error": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.21",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@iconify/vue": "^4.1.1",
"@nuxt/devtools": "latest",
"@nuxtjs/color-mode": "^3.3.2",
"@tailwindcss/typography": "^0.5.10",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bcryptjs": "^2.4.6",
"@types/nodemailer": "^6.4.14",
"daisyui": "^4.6.1",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"prisma": "^5.9.1",
"superjson": "^2.2.1",
"tsx": "^4.7.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"lint-staged": {
"**/*.{json,js,ts,tsx,vue,md}": [
"eslint --fix"
]
}
}