-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.08 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.08 KB
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
{
"name": "youtube_ecommerce",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development && next dev",
"build": "cross-env NODE_ENV=production && next build",
"start": "next start",
"lint": "next lint",
"test": " cross-env NODE_ENV=test jest",
"cypress:open": "cross-env NODE_ENV=test cypress open",
"start:test": "cross-env NODE_ENV=test && next build && next start",
"eslint": "eslint",
"cypress:start": "start-server-and-test 'npm run start:test' 3000 'npm run cypress:open' "
},
"dependencies": {
"@auth/mongodb-adapter": "^3.4.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.16.6",
"@paypal/react-paypal-js": "^8.5.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@reduxjs/toolkit": "^2.2.7",
"@stripe/react-stripe-js": "^2.7.3",
"@stripe/stripe-js": "^4.1.0",
"@tanstack/react-query": "^5.51.21",
"@tanstack/react-table": "^8.20.1",
"axios": "^1.7.3",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"cloudinary": "^2.4.0",
"clsx": "^2.1.1",
"formik": "^2.4.6",
"framer-motion": "^11.3.21",
"lucide-react": "^0.424.0",
"next": "^14.2.24",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.14",
"proxy-memoize": "^3.0.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-medium-image-zoom": "^5.2.8",
"react-number-format": "^5.4.0",
"react-redux": "^9.1.2",
"react-spinners": "^0.14.1",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"stripe": "^16.6.0",
"swiper": "^11.1.9",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"yup": "^1.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.8.0",
"@jest/globals": "^29.7.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^29.7.0",
"body-parser": "^1.20.2",
"cross-env": "^7.0.3",
"cypress": "^13.17.0",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-auth": "^5.0.0-beta.20",
"next-test-api-route-handler": "^4.0.8",
"postcss": "^8",
"start-server-and-test": "^2.0.5",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5",
"typescript-eslint": "^8.0.0"
}
}