-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.42 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
{
"name": "sundar-clinic-main-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:analyze": "cross-env ANALYZE=true pnpm build",
"prepare": "husky",
"generate-types": "sanity schema extract && sanity typegen generate",
"test:e2e": "start-server-and-test start http://localhost:3000 \"cypress run --e2e\"",
"test:component": "start-server-and-test start http://localhost:3000 \"cypress run --component\"",
"cypress:open": "cypress open",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.1",
"@mui/material": "^5.14.10",
"@next/bundle-analyzer": "^14.2.13",
"@portabletext/react": "^3.1.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@sanity/client": "^6.22.1",
"@sanity/icons": "^3.4.0",
"@sanity/image-url": "^1.0.2",
"@sanity/vision": "^3.60.0",
"@types/node": "20.5.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"axios": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"lucide-react": "^0.277.0",
"next": "13.5.7",
"next-intl": "^3.20.0",
"next-sanity": "^5.5.11",
"nodemailer": "^6.9.5",
"postcss": "8.4.29",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.1",
"sanity": "^3.60.0",
"schema-dts": "^1.1.2",
"server-only": "^0.0.1",
"sharp": "^0.32.6",
"styled-components": "^6",
"suspend-react": "^0.1.3",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.6.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@testing-library/react": "^16.0.1",
"@types/nodemailer": "^6.4.10",
"cross-env": "^7.0.3",
"cypress": "^13.15.0",
"husky": "^9.1.6",
"start-server-and-test": "^2.0.8"
}
}