-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "example-nuxtjs-auth",
"version": "0.0.1",
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"start": "nuxt dev",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepack": "tsc --noEmit",
"test": "playwright test"
},
"dependencies": {
"@auth/core": "^0.40.0",
"@nuxt/image": "^1.10.0",
"@zitadel/nuxt-auth": "^1.0.0",
"h3": "^1.15.3",
"nuxt": "^4.1.0",
"openid-client": "^6.6.2",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@nuxt/eslint": "^1.7.1",
"@playwright/test": "^1.56.1",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^22",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"knip": "^5.64.1",
"prettier": "^3.6.2",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0"
}
}