This repository was archived by the owner on Jan 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 1.85 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 1.85 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
{
"name": "assoplus-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:dev": "prisma migrate dev && tsx ./prisma/seed.ts && prisma generate",
"db:deploy": "prisma migrate deploy && prisma generate",
"db:seed": "tsx ./prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.758.0",
"@nuxt/eslint": "1.0.1",
"@nuxt/icon": "1.10.3",
"@nuxt/image": "^1.10.0",
"@nuxtjs/i18n": "^9.3.1",
"@pinia/nuxt": "^0.10.1",
"@prisma/client": "^6.4.1",
"@prisma/nuxt": "0.3.0",
"@tailwindcss/typography": "^0.5.16",
"@tinymce/tinymce-vue": "^6.1.0",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"csv-stringify": "^6.5.2",
"dompurify": "^3.2.5",
"eslint": "^9.21.0",
"jsdom": "^26.1.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.10.0",
"nuxt": "^3.15.4",
"nuxt-auth-utils": "^0.5.17",
"nuxt-seo-utils": "^7.0.4",
"pinia": "^3.0.1",
"sharp": "^0.33.5",
"tinymce": "^7.8.0",
"tslog": "^4.9.3",
"uuid": "^11.1.0",
"vue": "latest",
"vue-picture-cropper": "^0.7.0",
"vue-router": "latest",
"vue3-toastify": "^0.2.8",
"zod": "^3.24.2"
},
"devDependencies": {
"@faker-js/faker": "^9.5.1",
"@iconify-json/emojione": "^1.2.1",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/mdi": "^1.2.3",
"@nuxtjs/tailwindcss": "^6.13.1",
"@types/jsdom": "^21.1.7",
"@types/nodemailer": "^6.4.17",
"daisyui": "^4.12.24",
"prisma": "^6.4.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"packageManager": "npm@10.8.3"
}