-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
{
"name": "disney-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run --config ./vitest.config.ts",
"test:watch": "vitest --config ./vitest.config.ts",
"test:ui": "vitest --ui --config ./vitest.config.ts",
"cy": "npx cypress open --browser chrome",
"cy:open": "npx cypress open",
"cy:headless": "npx cypress run --headless"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@radix-ui/react-avatar": "^1.0.0",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-dropdown-menu": "^1.0.0",
"@radix-ui/react-separator": "^1.0.0",
"@radix-ui/react-visually-hidden": "^1.0.0",
"axios": "^0.27.2",
"daisyui": "^2.24.0",
"firebase": "^9.9.4",
"framer-motion": "^7.2.1",
"graphql": "^16.6.0",
"lottie-react": "^2.3.1",
"next": "12.2.5",
"next-pwa": "^5.6.0",
"nookies": "^2.5.2",
"phosphor-react": "^1.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.3.0",
"swiper": "^8.3.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitejs/plugin-react": "^2.0.1",
"@vitest/coverage-c8": "^0.22.1",
"@vitest/ui": "^0.22.1",
"autoprefixer": "^10.4.8",
"c8": "^7.12.0",
"cypress": "^10.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-testing-library": "^5.6.0",
"jsdom": "^20.0.0",
"postcss": "^8.4.16",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^3.1.8",
"typescript": "4.8.2",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.22.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}