-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "hana-blog",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && prisma generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"new": "node ./scripts/newArticle.js",
"generate:prisma": "prisma generate",
"migrate:dev": "prisma migrate dev"
},
"dependencies": {
"nuxt": "^3.15.1",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@iconify-json/lucide": "^1.2.22",
"@iconify-json/mingcute": "^1.2.3",
"@iconify-json/svg-spinners": "^1.2.2",
"@kamona/tailwindcss-perspective": "^0.1.1",
"@nuxt/content": "^2.13.4",
"@nuxt/icon": "^1.10.3",
"@nuxt/image": "^1.9.0",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/seo": "2.0.2",
"@nuxtjs/tailwindcss": "^6.12.2",
"@pinia/nuxt": "^0.9.0",
"@prisma/client": "^6.2.1",
"@tailwindcss/forms": "^0.5.10",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.5",
"@types/vivus": "^0.4.7",
"@vueuse/core": "^12.4.0",
"@vueuse/nuxt": "^12.4.0",
"bcrypt": "^5.1.1",
"clipboard": "^2.0.11",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"feed": "^4.2.2",
"gsap": "^3.12.5",
"jsonwebtoken": "^9.0.2",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.2.0",
"prisma": "6.2.1",
"sass": "^1.83.1",
"typescript": "~5.7.3",
"vivus": "^0.4.6",
"zod": "^3.24.1"
}
}