forked from samkanje/usenuxt-free
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"db:push": "drizzle-kit push:pg",
"db:gen": "drizzle-kit generate:pg",
"start": "node .output/server/index.mjs",
"lint": "eslint . --fix",
"prepare": "husky install"
},
"dependencies": {
"@iconify/json": "^2.2.166",
"@lucia-auth/adapter-postgresql": "^2.0.2",
"@lucia-auth/oauth": "^3.5.1",
"@nuxt/ui": "^2.11.1",
"drizzle-orm": "^0.29.3",
"lucia": "^2.7.6",
"postgres": "^3.4.3",
"slugify": "^1.6.6",
"stripe": "^14.11.0",
"uid": "^2.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@formkit/auto-animate": "^0.8.1",
"@nuxtjs/plausible": "latest",
"@nuxtjs/tailwindcss": "latest",
"drizzle-kit": "^0.20.10",
"eslint": "^8.56.0",
"husky": "^8.0.0",
"nuxt": "^3.9.1",
"vue": "^3.4.6",
"vue-router": "^4.2.5"
}
}