-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 985 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 985 Bytes
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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"build-vue": "vite build --config vite.config.wordpress.ts",
"dev-vue": "vite --config vite.config.wordpress.ts ",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"seed": "tsx prisma/seed.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.1.5",
"@prisma/client": "^5.21.1",
"csv-parser": "^3.0.0",
"nuxt": "^3.13.0",
"vite": "^5.4.11",
"vue": "latest"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^6.12.1",
"@sidebase/nuxt-auth": "^0.6.7",
"@types/node": "^22.7.5",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"prisma": "^5.21.1",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vue-tsc": "^2.1.6"
}
}