-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.73 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
{
"name": "shop-pay",
"version": "0.1.0",
"author": "Oleksandr Lazarenko",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "npx prettier --check \"**/*.{css,scss,js,ts,tsx,json}\"",
"prettier:fix": "npm run prettier -- --write",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.11.10",
"@next-auth/mongodb-adapter": "^1.1.1",
"@next/bundle-analyzer": "^13.1.6",
"@next/font": "13.1.6",
"@paypal/react-paypal-js": "^7.8.2",
"@reduxjs/toolkit": "^1.9.2",
"@stripe/stripe-js": "^1.46.0",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.10",
"axios": "^1.3.3",
"bcrypt": "^5.1.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"formik": "^2.2.9",
"google-auth-library": "^8.7.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.14.0",
"mongoose": "^6.9.1",
"next": "13.1.6",
"next-auth": "^4.19.2",
"next-connect": "^0.13.0",
"nextjs-progressbar": "^0.0.16",
"nodemailer": "^6.9.1",
"react": "18.2.0",
"react-countdown": "^2.3.5",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-image-magnify": "^2.7.4",
"react-redux": "^8.0.5",
"react-responsive": "^9.0.2",
"react-share": "^4.4.1",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"sass": "^1.58.0",
"slugify": "^1.6.5",
"stripe": "^11.10.0",
"swiper": "^9.0.5",
"swr": "^2.0.3",
"typescript": "4.9.5",
"zod": "^3.20.6",
"zod-formik-adapter": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@savvywombat/tailwindcss-grid-areas": "^3.0.1",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/nodemailer": "^6.4.7",
"@types/react-image-magnify": "^2.7.1",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"stripe-event-types": "^2.2.0",
"tailwindcss": "^3.2.6"
}
}