-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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
{
"name": "sms-tree",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"auth:genKey": "tsx ./scripts/createKeyPairs.ts",
"db:createAdmin": "tsx ./scripts/createDefaultUser.ts",
"db:createSampleDB": "tsx ./scripts/createSampleDB.ts",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.621.0",
"@aws-sdk/s3-request-presigner": "^3.621.0",
"@libsql/client": "^0.5.6",
"@tanstack/vue-query": "^5.36.0",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vueuse/components": "^10.9.0",
"@vueuse/core": "^10.9.0",
"@vueuse/integrations": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.29.5",
"jose": "^5.3.0",
"lucide-vue-next": "^0.367.0",
"nanoid": "^5.0.7",
"radix-vue": "^1.7.4",
"superjson": "^2.2.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"trpc-nuxt": "^0.10.21",
"vue-sonner": "^1.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.0",
"@iconify-json/lucide": "^1.1.187",
"@iconify/tailwind": "^0.1.4",
"@nuxt/devtools": "latest",
"@nuxtjs/color-mode": "^3.4.1",
"@nuxtjs/tailwindcss": "^6.12.0",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"@pinia/nuxt": "^0.5.1",
"@radix-icons/vue": "^1.0.0",
"@types/bcrypt": "^5.0.2",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.21.2",
"eslint": "^8.57.0",
"happy-dom": "^13.10.1",
"nuxt": "^3.11.2",
"nuxt-icon": "^0.6.10",
"pinia": "^2.1.7",
"shadcn-nuxt": "^0.10.4",
"trpc-panel": "^1.3.4",
"typescript": "^5.4.5",
"vue": "^3.4.27",
"vue-router": "^4.3.2",
"vue-tsc": "^1.8.27"
}
}