-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.49 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "nuxtemplate",
"version": "0.2.16",
"description": "Nuxt + Typescript + Tailwind + Tauri Template",
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shba007/nuxtemplate.git"
},
"type": "module",
"private": true,
"engines": {
"node": "^22.11.0 || ^24.14.0",
"pnpm": "^9.15.0 || ^10.2.0 || ^11.0.0",
"bun": "^1.2.9"
},
"packageManager": "bun@1.4.0",
"scripts": {
"prepare": "husky || true",
"postinstall": "nuxt prepare && prisma generate",
"dev": "nuxt dev",
"detect": "gitleaks git --verbose",
"lint": "eslint . --fix",
"format": "prettier . --write",
"test:load": "k6 run tests/load.test.ts",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node --env-file=.env.prod .output/server/index.mjs",
"clean": "nuxt cleanup && (cd src-tauri && cargo clean)",
"prisma:pull": "prisma db pull",
"prisma:push": "prisma db push",
"prisma:seed": "prisma db seed",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:studio": "prisma studio",
"docker:build": "docker build --build-arg VERSION=dev --build-arg BUILD_TIME=now -t nuxtemplate:dev .",
"docker:start": "docker run --detach --name nuxtemplate-dev --env-file .env.prod -p 4000:3000 nuxtemplate:dev",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:dev:mobile": "tauri android dev",
"tauri:build:mobile": "tauri android build",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:unit": "vitest --project unit",
"test:nuxt": "vitest --project nuxt"
},
"dependencies": {
"@dotenvx/dotenvx": "^2.23.0",
"@hannoeru/nuxt-otel": "^0.0.8",
"@notionhq/client": "^5.26.0",
"@nuxt/eslint": "^1.17.0",
"@nuxt/fonts": "^0.14.0",
"@nuxt/icon": "^2.5.1",
"@nuxt/image": "^2.1.0",
"@nuxt/scripts": "^1.3.8",
"@nuxt/test-utils": "^4.2.0",
"@nuxtjs/color-mode": "^4.0.1",
"@nuxtjs/i18n": "^10.6.0",
"@nuxtjs/mcp-toolkit": "^0.19.0",
"@nuxtjs/seo": "^5.3.14",
"@nuxtjs/tailwindcss": "^6.14.0",
"@pinia/nuxt": "^1.0.2",
"@prisma/client": "^7.10.0",
"@regle/nuxt": "^1.29.1",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-process": "~2.3.1",
"@tauri-apps/plugin-shell": "^2.3.6",
"@tauri-apps/plugin-updater": "~2.11.0",
"@types/web-push": "^3.6.4",
"@unhead/vue": "^3.4.0",
"@vite-pwa/nuxt": "^1.1.1",
"@vueuse/core": "^14.4.0",
"@vueuse/nuxt": "^14.4.0",
"nuxt": "^4.5.2",
"nuxt-auth-utils": "^0.5.30",
"pinia": "^4.0.3",
"prisma": "^7.10.0",
"vue": "^3.5.42",
"vue-router": "^5.3.0",
"web-push": "^3.6.7",
"zod": "^4.5.4"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@tauri-apps/cli": "^2.11.4",
"@types/bun": "^1.4.0",
"@types/k6": "^2.2.0",
"@vue/test-utils": "^2.5.0",
"eslint": "^10.9.1",
"happy-dom": "^20.12.0",
"husky": "^9.1.7",
"playwright-core": "^1.62.1",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"typescript": "~6.0.3",
"vitest": "^4.1.11"
},
"trustedDependencies": [
"@parcel/watcher",
"@prisma/engines",
"esbuild",
"prisma",
"protobufjs",
"sharp",
"unrs-resolver",
"vue-demi"
]
}