-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.82 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
{
"name": "ouralapak-frontend",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"export": "next export",
"start": "next start",
"clean": "rimraf .next out",
"deduplicate": "npx yarn-deduplicate && yarn install",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"tsc": "tsc --pretty --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install",
"pm2": "pm2",
"pm2:start": "pm2 start ecosystem.config.json"
},
"dependencies": {
"@fontsource/rubik": "^4.5.11",
"@hcaptcha/react-hcaptcha": "^1.4.4",
"@headlessui/react": "^1.6.6",
"@reduxjs/toolkit": "^1.8.3",
"axios": "^0.27.2",
"bootstrap": "^5.2.0",
"chart.js": "^3.9.1",
"clsx": "^1.2.1",
"date-fns": "^2.29.1",
"date-fns-tz": "^1.3.6",
"framer-motion": "^6.5.1",
"lodash": "^4.17.21",
"merge-images": "^2.0.0",
"next": "12.2.3",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.0",
"nextjs-progressbar": "^0.0.14",
"pm2": "^5.2.2",
"preact": "^10.10.0",
"query-string": "^7.1.1",
"react": "18.2.0",
"react-bootstrap": "^2.4.0",
"react-burger-menu": "^3.0.8",
"react-calendar": "^3.7.0",
"react-chartjs-2": "^4.3.1",
"react-content-loader": "^6.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-datepicker": "^4.8.0",
"react-dom": "18.2.0",
"react-drag-drop-files": "^2.3.7",
"react-dropzone": "^14.2.2",
"react-google-recaptcha": "^2.1.0",
"react-hook-form": "^7.34.0",
"react-hot-toast": "^2.3.0",
"react-icons": "^4.4.0",
"react-image-file-resizer": "^0.4.8",
"react-image-lightbox": "^5.1.4",
"react-infinite-scroller": "^1.2.6",
"react-intersection-observer": "^9.4.0",
"react-loader-spinner": "^5.1.5",
"react-paginate": "^8.1.3",
"react-phone-number-input": "^3.2.6",
"react-player": "^2.10.1",
"react-redux": "^8.0.2",
"react-responsive-carousel": "^3.2.23",
"react-responsive-modal": "^6.2.0",
"react-select": "^5.4.0",
"react-spinner-material": "^1.4.0",
"react-spinners": "^0.13.4",
"react-table": "^7.8.0",
"react-tippy": "^1.4.0",
"react-toastify": "^9.0.7",
"react-tooltip": "^4.2.21",
"react-tsparticles": "^2.1.3",
"react-use": "^17.4.0",
"sass": "^1.54.0",
"sharp": "^0.30.7",
"sweetalert2": "^11.4.24",
"sweetalert2-react-content": "^5.0.2",
"swiper": "^8.3.2",
"swr": "^1.3.0",
"tailwind-merge": "^1.5.1",
"tsparticles": "^2.1.3",
"tsparticles-engine": "^2.1.3",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@svgr/webpack": "^6.3.1",
"@tailwindcss/forms": "^0.5.2",
"@types/lodash": "^4.14.182",
"@types/merge-images": "^1.2.1",
"@types/node": "18.6.2",
"@types/react": "18.0.15",
"@types/react-datepicker": "^4.4.2",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-infinite-scroller": "^1.2.3",
"@types/react-paginate": "^7.1.1",
"@types/react-phone-number-input": "^3.0.14",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"autoprefixer": "^10.4.7",
"eslint": "^8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.14",
"prettier": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.6",
"typescript": "4.7.4"
}
}