-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 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
{
"name": "nuxt-app",
"version": "1.2.5",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"e2e": "vitest run --no-file-parallelism",
"playwright": "dotenv -e .env.test playwright test",
"test": "vitest run --no-file-parallelism && dotenv -e .env.test playwright test",
"format": "prettier --write \"{app/components,app/composables,app/layouts,app/middleware,app/pages,app/utils,server,stores,shared,test}/**/*.{ts,vue}\"",
"tsc": "tsc --noEmit",
"admin": "dotenv tsx ./server/database/admin.ts"
},
"dependencies": {
"@nuxt/eslint": "^1.4.1",
"@nuxt/fonts": "^0.11.4",
"@nuxt/icon": "^1.13.0",
"@nuxt/ui": "^3.3.0",
"@nuxtjs/device": "^3.2.4",
"@pinia/nuxt": "^0.11.1",
"@vueuse/core": "^13.6.0",
"@vueuse/nuxt": "^13.6.0",
"bcryptjs": "^3.0.2",
"eslint": "^9.28.0",
"jsonwebtoken": "^9.0.2",
"nuxt": "^4.0.3",
"nuxt-auth-utils": "^0.5.20",
"pinia": "^3.0.3",
"sanitize-html": "^2.17.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"typescript": "^5.8.3",
"validator": "^13.15.15",
"vue": "^3.5.15",
"vue-router": "^4.5.1",
"zod": "^3.25.47"
},
"devDependencies": {
"@nuxt/test-utils": "^3.19.2",
"@playwright/test": "^1.55.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^24.3.0",
"@types/sanitize-html": "^2.16.0",
"@types/validator": "^13.15.1",
"@vitest/ui": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"dotenv-cli": "^10.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"happy-dom": "^18.0.1",
"playwright-core": "^1.55.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"vitest": "^3.2.4"
}
}