-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.46 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
{
"name": "microcis",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"data:import": "node seader.ts",
"lint:fix": "eslint src --fix && pnpm format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"prisma": {
"schema": "./prisma/schema.prisma"
},
"typeRoots": [
"./node_modules/@types"
],
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.5",
"@mui/material": "^5.16.4",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "5.16.1",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@types/axios": "^0.14.0",
"@types/nodemailer": "^6.4.15",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"embla-carousel-react": "^8.1.7",
"firebase": "^10.12.4",
"framer-motion": "^11.3.8",
"lucide-react": "^0.376.0",
"mongoose": "^8.5.1",
"next": "^14.2.5",
"next-auth": "^4.24.7",
"next-intl": "^3.17.2",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.14",
"react": "^18.3.1",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-google-recaptcha-v3": "^1.10.1",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-loader-spinner": "^6.1.6",
"react-phone-number-input": "^3.4.3",
"react-simplemde-editor": "^5.2.0",
"react-toastify": "^10.0.5",
"swiper": "^11.1.5",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^8.1.0",
"@tabler/icons-react": "^3.11.0",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/bcrypt": "^5.0.2",
"@types/next-auth": "^3.15.0",
"@types/react": "^18.3.3",
"@types/react-loader-spinner": "^4.0.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-router-mock": "^0.9.13",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.39",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "5.16.1",
"tailwindcss": "^3.4.6",
"typescript": "^5.5.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=1",
"prettier --write",
"git add"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}