forked from thecodeorigin/nuxt-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.24 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
{
"name": "better-auth",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "eslint .",
"generate": "nuxt generate",
"preview": "nuxt preview",
"prepare": "nuxt prepare",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:proofs": "node examples/agent-proof.mjs && node examples/sso-proof.mjs && node examples/authz-proof.mjs && node examples/entitlement-proof.mjs && node examples/billing-proof.mjs && node examples/rp-proof.mjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@better-auth/api-key": "catalog:",
"@better-auth/core": "catalog:",
"@better-auth/oauth-provider": "catalog:",
"@casl/ability": "catalog:",
"@casl/vue": "catalog:",
"@libsql/client-wasm": "catalog:",
"@ngrok/ngrok": "catalog:",
"@nuxt/eslint": "catalog:",
"@nuxt/fonts": "catalog:",
"@nuxt/icon": "catalog:",
"@nuxt/image": "catalog:",
"@nuxt/ui": "catalog:",
"@nuxthub/core": "catalog:",
"@nuxtjs/ngrok": "catalog:",
"@onmax/nuxt-better-auth": "catalog:",
"@polar-sh/better-auth": "catalog:",
"@polar-sh/sdk": "catalog:",
"@thecodeorigin/auth": "workspace:*",
"@vueuse/nuxt": "catalog:",
"better-auth": "catalog:",
"es-toolkit": "catalog:",
"nanoid": "catalog:",
"nuxt": "catalog:",
"nuxt-resend": "catalog:",
"nuxt-security": "catalog:",
"ohash": "catalog:",
"vue": "catalog:",
"vue-router": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@iconify-json/lucide": "catalog:",
"@iconify-json/simple-icons": "catalog:",
"@libsql/client": "catalog:",
"@playwright/test": "catalog:",
"drizzle-kit": "catalog:",
"drizzle-orm": "catalog:",
"eslint": "catalog:",
"eslint-plugin-import-lite": "catalog:",
"eslint-plugin-perfectionist": "catalog:",
"eslint-plugin-pnpm": "catalog:",
"eslint-plugin-unicorn": "catalog:",
"jsonc-eslint-parser": "catalog:",
"tailwindcss": "catalog:",
"vitepress": "catalog:",
"wrangler": "catalog:",
"yaml-eslint-parser": "catalog:"
}
}