-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.01 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
{
"name": "next-fullstack-project",
"version": "1.3.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lint-staged": "lint-staged",
"release": "release-it",
"find-deadcode": "ts-prune",
"docker-build": "docker build -t home360-client .",
"docker-run": "docker run -p 3000:3000 home360-client"
},
"dependencies": {
"-": "^0.0.1",
"@changesets/cli": "^2.26.0",
"@tanstack/react-query": "^4.33.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-slick": "^0.23.10",
"axios": "^1.3.6",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"cookie": "^0.5.0",
"cookies-next": "^2.1.1",
"eslint": "8.35.0",
"eslint-config-next": "13.2.1",
"formik": "^2.2.9",
"jest": "^29.5.0",
"jose": "^4.12.2",
"lottie-web": "^5.12.2",
"lucide-react": "^0.118.0",
"next": "13.2.1",
"next-auth": "^4.19.2",
"next-themes": "^0.3.0",
"nookies": "^2.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-idle-timer": "^5.7.2",
"react-loading-skeleton": "^3.3.1",
"react-slick": "^0.29.0",
"sharp": "^0.33.5",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^1.10.0",
"yup": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@release-it/conventional-changelog": "^5.1.1",
"@types/cookie": "^0.5.1",
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.14.2",
"autoprefixer": "^10.4.13",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest-mock-extended": "^3.0.4",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"release-it": "^15.6.0",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.(tsx|ts)": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "ref",
"section": "Refactor"
},
{
"type": "test",
"section": "Test"
},
{
"type": "chore",
"section": "Chore"
}
]
}
}
}
}
}