-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 936 Bytes
/
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
{
"name": "nanami-bot-frontend",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"generate": "nuxt generate",
"build": "nuxt build",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"start": "PORT=3000 NUXT_DATABASE_URL= bun .output/server/index.mjs",
"product": "bun install && bun prisma db pull && bun prisma generate && nuxt build"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/image": "^1.4.0",
"@nuxtjs/tailwindcss": "^6.11.4",
"@types/js-cookie": "^3.0.6",
"nuxt": "^3.8.0",
"nuxt-primevue": "^0.3.1",
"prisma": "^5.12.1",
"vue": "^3.3.7",
"vue-router": "^4.2.5"
},
"dependencies": {
"@octokit/core": "^6.1.1",
"@prisma/client": "^5.12.1",
"@vuepic/vue-datepicker": "^8.4.0",
"apexcharts": "^3.47.0",
"js-cookie": "^3.0.5",
"primevue": "^3.51.0",
"vue3-apexcharts": "^1.5.2"
}
}