-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.97 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
{
"name": "equalify-frontend",
"version": "0.2.0",
"type": "module",
"scripts": {
"start:prod": "vite --mode production",
"start:staging": "vite --mode staging",
"build:prod": "vite build --mode production && aws s3 --profile equalify sync --delete ./dist s3://equalify-web && aws --profile equalify cloudfront create-invalidation --distribution-id E2NB4ZLGSC0FOP --paths \"/*\" > /dev/null",
"build:staging": "vite build --mode staging && aws s3 --profile equalify sync --delete ./dist s3://equalify-web-staging && aws --profile equalify cloudfront create-invalidation --distribution-id E1EWHV45TCAC77 --paths \"/*\" > /dev/null",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:e2e": "cypress run --e2e",
"cy:run:component": "cypress run --component",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@hotjar/browser": "^1.0.9",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/react": "^8.17.0",
"@tanstack/react-query": "^5.14.1",
"@tanstack/react-query-devtools": "^5.37.1",
"@tanstack/react-table": "^8.16.0",
"aws-amplify": "^6.0.8",
"class-variance-authority": "^0.7.0",
"cmdk": "^1.0.0",
"input-otp": "^1.2.4",
"posthog-js": "^1.147.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.51.3",
"react-icons": "^4.11.0",
"react-router-dom": "^6.12.1",
"recharts": "^2.12.6",
"tailwind-merge": "^2.2.2",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest-axe": "^3.5.9",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^1.5.0",
"@vitest/ui": "^1.5.0",
"autoprefixer": "^10.4.16",
"cypress": "^13.7.3",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest-axe": "^8.0.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.30",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"typescript-eslint": "^7.6.0",
"vite": "^5.2.8",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.0"
},
"imports": {
"~/*": "./src/*"
}
}