forked from raahimhussa/Online-tuition-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.19 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
{
"name": "@tuition-learning-platform/simple-next-js",
"author": "Minimals",
"version": "5.4.0",
"description": "Simple Next & JavaScript",
"private": true,
"scripts": {
"dev": "next dev -p 3035",
"start": "next start",
"build": "next build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"clear-all": "rm -rf node_modules .next out dist build",
"re-start": "rm -rf node_modules .next out dist build && yarn install && yarn dev",
"re-build": "rm -rf node_modules .next out dist build && yarn install && yarn build",
"re-build-test": "rm -rf node_modules .next out dist build && npm install && npm run build"
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@google/generative-ai": "^0.21.0",
"@hookform/resolvers": "^3.9.0",
"@iconify/react": "^4.1.1",
"@mui/icons-material": "^6.1.4",
"@mui/lab": "^5.0.0-alpha.139",
"@mui/material": "^5.16.7",
"@mui/x-date-pickers": "^7.22.3",
"@reduxjs/toolkit": "^2.3.0",
"@stripe/stripe-js": "^5.2.0",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"formik": "^2.4.6",
"framer-motion": "^10.15.1",
"highlight.js": "^11.10.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mui-one-time-password-input": "^2.0.3",
"next": "^13.5.7",
"next-auth": "^4.24.10",
"next-redux-wrapper": "^8.1.0",
"nodemailer": "^6.9.16",
"notistack": "^3.0.1",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"pg": "^8.13.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-apexcharts": "^1.5.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.10",
"react-hook-form": "^7.53.1",
"react-lazy-load-image-component": "^1.6.0",
"react-map-gl": "^7.1.7",
"react-markdown": "^9.0.1",
"react-quill": "^2.0.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"react-slick": "^0.30.2",
"rehype-highlight": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"simplebar-react": "^3.2.4",
"stripe": "^17.4.0",
"stylis": "^4.3.0",
"stylis-plugin-rtl": "^2.1.1",
"yet-another-react-lightbox": "^3.21.6",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@svgr/webpack": "^8.0.1",
"@types/react": "^18.2.19",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
}
}