-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "mentor--me",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && tsc --noEmit",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "npm run check-lint --fix && npx prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"axios": "^1.5.1",
"cloudinary": "^1.41.0",
"countries-list": "^3.0.5",
"date-fns": "^2.30.0",
"eslint-config-prettier": "^9.0.0",
"framer-motion": "^10.16.4",
"nanoid": "^5.0.1",
"next": "13.5.4",
"next-cloudinary": "^4.25.0",
"react": "^18",
"react-alice-carousel": "^2.8.0",
"react-datepicker": "^4.20.0",
"react-day-picker": "^8.8.2",
"react-dom": "^18",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"react-toastify": "^9.1.3",
"react-use-measure": "^2.1.1",
"recharts": "^2.8.0",
"typewriter-effect": "^2.21.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.5.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8",
"prettier": "^3.0.3",
"tailwindcss": "^3",
"typescript": "^5"
}
}