-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
109 lines (109 loc) · 2.78 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
{
"name": "streamland",
"version": "1.2.0-0",
"private": true,
"scripts": {
"release": "release-it",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"engines": {
"node": "18"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"realease-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"
}
]
}
}
}
},
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@formkit/auto-animate": "^0.8.1",
"@mui/material": "^5.13.5",
"@react-oauth/google": "^0.11.0",
"@react-spring/web": "^9.7.2",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-query": "^4.29.23",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"bufferutil": "^4.0.7",
"clsx": "^1.2.1",
"emoji-mart": "^5.5.2",
"eslint": "^8.42.0",
"eslint-config-next": "^14.2.1",
"framer-motion": "^11.0.28",
"jwt-decode": "^3.1.2",
"moment": "^2.29.4",
"movie-trailer": "^3.2.2",
"next": "^14.2.1",
"nprogress": "^0.2.0",
"plaiceholder": "^3.0.0",
"postcss": "8.4.24",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.9.0",
"react-infinite-scroll-component": "^6.1.0",
"react-loading-skeleton": "^3.3.1",
"react-redux": "^8.0.7",
"react-responsive-carousel": "^3.2.23",
"react-select": "^5.7.4",
"react-spinners": "^0.13.8",
"react-tooltip": "^5.13.1",
"socket.io-client": "^4.7.2",
"tailwindcss": "3.3.2",
"typescript": "5.1.3",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/config-lerna-scopes": "^19.0.0",
"@release-it/conventional-changelog": "^8.0.1",
"@tanstack/eslint-plugin-query": "^4.29.9",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"husky": "^9.0.11",
"release-it": "^17.2.0"
}
}