forked from SandeepVashishtha/Eventra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 6.04 KB
/
Copy pathpackage.json
File metadata and controls
159 lines (159 loc) · 6.04 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "eventra-website",
"version": "1.0.0",
"description": "A modern website for Eventra - platform for builders",
"private": true,
"type": "module",
"engines": {
"node": "22.x",
"npm": ">=9.6.4"
},
"dependencies": {
"@headlessui/react": "2.2.10",
"@heroicons/react": "^2.2.0",
"@sentry/browser": "^9.12.0",
"@sentry/react": "^10.57.0",
"@tailwindcss/postcss": "4.3.0",
"@vercel/analytics": "^2.0.1",
"aos": "^2.3.4",
"axios": "^1.16.1",
"bcryptjs": "3.0.3",
"canvas-confetti": "^1.9.3",
"crypto-js": "^4.2.0",
"date-fns": "^4.3.0",
"dompurify": "3.4.6",
"framer-motion": "11.18.2",
"fuse.js": "^7.1.0",
"html2canvas": "^1.4.1",
"html5-qrcode": "2.3.8",
"i18next": "^26.2.0",
"i18next-browser-languagedetector": "^8.2.1",
"ics": "^3.12.0",
"idb-keyval": "6.2.4",
"ioredis": "^5.11.1",
"jsonwebtoken": "9.0.3",
"jspdf": "^4.2.1",
"lenis": "^1.0.42",
"lucide-react": "^0.542.0",
"marked": "18.0.4",
"react": "^19.2.7",
"react-big-calendar": "^1.19.4",
"react-countup": "^6.5.3",
"react-dom": "^19.2.7",
"react-helmet-async": "3.0.0",
"react-hot-toast": "^2.6.0",
"react-i18next": "^17.0.8",
"react-icons": "^5.6.0",
"react-intersection-observer": "^10.0.3",
"react-qr-code": "^2.0.21",
"react-router-dom": "^7.18.0",
"react-toastify": "^11.1.0",
"react-virtualized-auto-sizer": "^2.0.3",
"react-window": "^1.8.10",
"recharts": "^3.8.1"
},
"scripts": {
"dev": "vite",
"start": "vite",
"vercel-build": "node scripts/validate-env.js --frontend-only && vite build",
"prebuild": "node scripts/validate-env.js --frontend-only",
"build": "vite build",
"build:full": "node scripts/validate-env.js && vite build",
"build:fast": "vite build",
"preview": "vite preview",
"validate-env": "node scripts/validate-env.js --frontend-only",
"validate-env:full": "node scripts/validate-env.js",
"test": "npm run test:unit",
"test:unit": "node --test tests/eventPaginationUtils.test.mjs tests/routeSearchUtils.test.mjs tests/userNameUtils.test.mjs tests/relativeTime.test.mjs tests/safeJsonParse.test.mjs tests/registerUtils.test.mjs tests/bookmarkUtils.test.mjs tests/eventDraftUtils.test.mjs tests/exportCsv.test.mjs tests/hackathonFilterUtils.test.mjs tests/offlineQueue.test.mjs tests/colorTokens.test.mjs tests/themeConsistency.test.mjs tests/sseMultiplexer.test.mjs tests/cspReporting.test.mjs tests/secureStorage.test.mjs tests/conflictDetection.test.mjs tests/eventRecommendationsResponsive.test.mjs tests/spatialSeatSelectorAccessibility.test.mjs tests/navbar.keyboard.test.mjs tests/navbarDropdownVisibility.test.mjs tests/shareModalUtils.test.mjs tests/serviceWorkerLeaderboard.test.mjs tests/eventReminder.test.mjs tests/p2pFileTransfer.test.mjs tests/useContrastChecker.test.mjs tests/errorRecovery.test.mjs tests/eventTimelineReplay.test.mjs tests/liveAudience.test.mjs tests/hostHackathonValidation.test.mjs tests/submitProjectValidation.test.mjs",
"test:node": "node --import ./tests/setup.js --test tests/**/*.test.mjs",
"test:e2e": "playwright test",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:webkit": "playwright test --project=webkit",
"test:e2e:mobile": "playwright test --project=mobile-chrome --project=mobile-safari",
"test:e2e:install": "playwright install --with-deps",
"test:e2e:install-all": "playwright install firefox webkit chromium --with-deps",
"check": "npm run lint && npm run test",
"lint": "eslint src --max-warnings=200",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{js,jsx,css}\"",
"prepare": "node scripts/setup-git-config.js",
"setup:secret": "node scripts/setup-dev-secret.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"knip": "knip"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@emnapi/core": "^1.10.0",
"@emnapi/runtime": "^1.10.0",
"@playwright/test": "1.60.0",
"@storybook/addon-a11y": "^10.4.1",
"@storybook/addon-docs": "^10.4.1",
"@storybook/addon-onboarding": "^10.4.1",
"@storybook/preset-create-react-app": "10.4.1",
"@storybook/react-webpack5": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.3",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.39.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-storybook": "10.4.1",
"eslint-plugin-testing-library": "^7.13.5",
"globals": "17.6.0",
"jsdom": "^29.1.1",
"knip": "^6.16.1",
"lint-staged": "^17.0.7",
"msw": "^2.14.6",
"playwright": "1.60.0",
"postcss": "8.5.15",
"prettier": "^3.2.5",
"storybook": "^10.4.1",
"tailwindcss": "^4.3.0",
"typescript": "^5.4.5",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"webpack": "^5.107.2"
},
"overrides": {
"nth-check": "^2.0.1",
"serialize-javascript": "^7.0.5",
"uuid": "^11.1.1",
"underscore": "^1.13.8",
"@tootallnate/once": "^2.0.1",
"undici": "^7.28.0",
"eslint": "^9.39.1",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"@rolldown/binding-linux-x64-gnu": "1.1.0",
"@rolldown/binding-linux-x64-musl": "1.0.2",
"lightningcss-linux-x64-gnu": "1.32.0",
"lightningcss-linux-x64-musl": "1.32.0"
},
"_gssoc_comment_dx": "// DEVELOPER EXPERIENCE: Integrated pre-commit validations to prevent broken or unformatted scripts from being pushed upstream."
}