-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "completo",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"typecheck": "nuxt typecheck",
"test": "vitest",
"test:unit": "vitest --project unit",
"test:integration": "vitest --project integration",
"db:cleanup": "npx tsx scripts/db-cleanup.ts",
"db:migrate": "npx tsx scripts/db-migrate.ts",
"db:seed": "npx tsx scripts/db-seed.ts",
"user:verify-email": "npx tsx scripts/user-verify-email.ts",
"user:create": "npx tsx scripts/user-create.ts",
"user:set-role": "npx tsx scripts/user-set-role.ts"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.90",
"@internationalized/date": "^3.11.0",
"@nuxt/fonts": "^0.14.0",
"@nuxt/ui": "^4.4.0",
"@tailwindcss/typography": "^0.5.19",
"better-sqlite3": "^12.6.2",
"dompurify": "^3.3.1",
"drizzle-orm": "^0.45.1",
"marked": "^17.0.3",
"nodemailer": "^8.0.1",
"nuxt": "^4.3.1",
"nuxt-auth-utils": "^0.5.29",
"tailwindcss": "^4.1.18",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@nuxt/eslint": "^1.15.1",
"@nuxt/test-utils": "^4.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/dompurify": "^3.2.0",
"@types/nodemailer": "^7.0.11",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.0",
"happy-dom": "^20.7.0",
"ofetch": "^1.5.1",
"swagger-ui-dist": "^5.31.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vue-tsc": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}