-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.07 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.07 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
70
71
72
73
74
{
"name": "nuxt-template",
"type": "module",
"version": "2.0.0",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",
"prepare": "nuxt prepare",
"lint": "eslint .",
"typecheck": "nuxt typecheck",
"auth:generate": "node ./scripts/generate-keys.mjs",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:preview": "drizzle-kit studio",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:unit": "vitest --project unit",
"test:nuxt": "vitest --project nuxt",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/vue-table": "^8.21.3",
"@upstash/redis": "^1.37.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"es-toolkit": "^1.45.1",
"google-auth-library": "^10.6.2",
"ioredis": "^5.10.1",
"mongodb": "^7.1.1",
"nanoid": "^5.1.7",
"nodemailer": "^8.0.4",
"nuxt": "^4.4.2",
"pg": "^8.20.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"ts-enum-util": "^4.1.0",
"ts-pattern": "^5.9.0",
"unstorage": "^1.17.5",
"vue": "^3.5.31",
"vue-router": "^5.0.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@antfu/eslint-config": "^8.0.0",
"@nuxt/a11y": "1.0.0-alpha.1",
"@nuxt/eslint": "1.15.2",
"@nuxt/fonts": "0.14.0",
"@nuxt/hints": "1.0.3",
"@nuxt/icon": "2.2.1",
"@nuxt/scripts": "0.13.2",
"@nuxt/test-utils": "4.0.0",
"@nuxtjs/device": "4.0.0",
"@octokit/types": "^16.0.0",
"@pinia/nuxt": "^0.11.3",
"@playwright/test": "^1.59.1",
"@vitest/coverage-v8": "^4.1.2",
"@vue/test-utils": "^2.4.6",
"@vueuse/nuxt": "^14.2.1",
"dotenv": "^17.4.0",
"drizzle-kit": "^0.31.10",
"happy-dom": "^20.8.9",
"magic-regexp": "^0.11.0",
"nuxt-security": "^2.5.1",
"playwright-core": "^1.59.1",
"type-fest": "^5.5.0",
"vitest": "^4.1.2"
}
}