-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 976 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 976 Bytes
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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"migrate": "drizzle-kit generate:sqlite --out db/migrations --schema db/schema.ts && drizzle-kit push:sqlite",
"studio": "drizzle-kit studio"
},
"dependencies": {
"@auth/core": "^0.30.0",
"@hebilicious/authjs-nuxt": "^0.3.5",
"@nuxt/ui": "^2.15.2",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"better-sqlite3": "^9.5.0",
"cookie": "^0.6.0",
"drizzle-orm": "^0.30.9",
"nuxt": "^3.11.2",
"vue": "^3.4.23",
"vue-router": "^4.3.2",
"zod": "^3.23.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.3.8",
"@types/better-sqlite3": "^7.6.10",
"drizzle-kit": "^0.20.17",
"eslint": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"typescript": "^5.4.5"
}
}