-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"db:update": "mikro-orm schema:update --run",
"typecheck": "nuxi typecheck"
},
"dependencies": {
"@auth/core": "^0.15.0",
"@hebilicious/authjs-nuxt": "^0.3.0",
"@mikro-orm/core": "^6.0.0-dev.93",
"@mikro-orm/mariadb": "^6.0.0-dev.93",
"@mikro-orm/migrations": "^6.0.0-dev.93",
"@mikro-orm/reflection": "^6.0.0-dev.93",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@nuxt/image": "rc",
"@pinia/nuxt": "^0.4.11",
"@vee-validate/nuxt": "^4.11.6",
"@vueuse/nuxt": "^10.4.1",
"consola": "^3.2.3",
"cookie-parser": "^1.4.6",
"morgan": "^1.10.0",
"nodemailer": "^6.9.5",
"pinia": "^2.1.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui": "^5.7.2",
"swagger-ui-dist": "^5.7.2",
"ts-node": "^10.9.1",
"vue3-carousel": "^0.3.1",
"vue3-carousel-nuxt": "^1.1.0"
},
"devDependencies": {
"@mikro-orm/cli": "^6.0.0-dev.93",
"@nuxt/devtools": "latest",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/i18n": "next",
"@nuxtjs/tailwindcss": "^6.8.0",
"@types/cookie-parser": "^1.4.4",
"@types/morgan": "^1.9.5",
"@types/node": "^20.6.3",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-dist": "^3.30.1",
"dayjs-nuxt": "^1.1.2",
"nuxt": "^3.7.3",
"nuxt-security": "^0.14.4",
"nuxt-viewport": "^2.0.6",
"typescript": "^5.2.2",
"vue-email": "^0.6.8",
"vue-tsc": "^1.8.13"
},
"mikro-orm": {
"useTsNode": true,
"tsConfigPath": "./tsconfig.mikro-orm.cli.json",
"configPaths": [
"./server/data-source.js",
"./server/data-source.ts"
]
}
}