-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "link-hub",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lint-staged": "lint-staged",
"analyze-bundle": "ANALYZE=true next build"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@next/bundle-analyzer": "^14.2.5",
"@next/font": "^14.2.5",
"@tanstack/react-query": "^5.8.4",
"@types/js-cookie": "^3.0.6",
"browser-image-compression": "^2.0.2",
"dayjs": "^1.11.10",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"next": "13.5.6",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"open-graph-scraper": "^6.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
"sharp": "^0.33.2",
"swiper": "^11.0.5",
"tailwind-scrollbar-hide": "^1.1.7"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/lodash": "^4.14.201",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"compression-webpack-plugin": "^11.1.0",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"next-compose-plugins": "^2.2.1",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
}
}