-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
128 lines (128 loc) · 3.48 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "catalog-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit --incremental",
"release": "release-it"
},
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@nextui-org/react": "^2.4.1",
"@react-oauth/google": "^0.12.1",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-query": "^5.40.1",
"@tiptap/extension-image": "^2.4.0",
"@tiptap/extension-link": "^2.4.0",
"@tiptap/extension-list-item": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.11",
"framer-motion": "^11.2.10",
"image-js": "^0.35.5",
"isomorphic-dompurify": "^2.12.0",
"next": "14.2.4",
"next-seo": "^6.5.0",
"nookies": "^2.5.2",
"qs": "^6.12.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.5",
"react-hot-toast": "^2.4.1",
"react-viewport-list": "^7.1.2",
"swiper": "^11.1.4",
"tailwind-merge": "^2.3.0",
"vaul": "^0.9.1",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@release-it/conventional-changelog": "^8.0.1",
"@tanstack/react-query-devtools": "^5.40.1",
"@types/node": "^20",
"@types/qs": "^6.9.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-svg-jsx": "^1.2.4",
"husky": "^9.0.11",
"postcss": "^8",
"prettier": "^3.3.1",
"prettier-plugin-tailwindcss": "^0.6.2",
"release-it": "^17.4.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "🔥 Features"
},
{
"type": "fix",
"section": "🪲 Bug Fixes"
},
{
"type": "docs",
"section": "📝 Documentation"
},
{
"type": "refactor",
"section": "📝 Refactors"
},
{
"type": "perf",
"section": "⚡ Performance Improvements"
},
{
"type": "test",
"section": "🧪 Tests"
},
{
"type": "build",
"section": "🛠️ Build System"
},
{
"type": "ci",
"section": "🏃 Continuous Integration"
}
]
},
"infile": "CHANGELOG.md",
"header": "# Changelog\n\nAll notable changes to this project will be documented in this file. See [Conventional Commits](https://www.conventionalcommits.org) for commit guidelines."
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/comimafun/catalog-ui"
}
}