-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json|vue)\""
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@headlessui/vue": "^1.7.22",
"@heroicons/vue": "^2.1.5",
"@nuxt/eslint": "^0.3.13",
"@nuxtjs/tailwindcss": "^6.12.0",
"@pinia/nuxt": "^0.9.0",
"@prisma/client": "^5.16.2",
"@vue/language-plugin-pug": "^2.1.10",
"nanoid": "^5.0.7",
"nuxt": "^3.12.2",
"pinia": "^2.3.0",
"plotly.js-dist-min": "^2.35.2",
"pug": "^3.0.3",
"vue": "^3.4.29",
"vue-router": "^4.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/plotly.js-dist-min": "^2.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"prettier": "^3.3.2",
"prisma": "^5.16.2",
"tailwindcss": "^3.4.13",
"tsx": "^4.16.0",
"typescript": "^5.5.2"
}
}