This repository was archived by the owner on Jun 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 512
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 5.25 KB
/
Copy pathpackage.json
File metadata and controls
147 lines (147 loc) · 5.25 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
{
"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",
"@studio-freight/lenis": "^1.0.42",
"@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": "^23.16.8",
"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",
"lucide-react": "^0.542.0",
"marked": "18.0.4",
"react": "^18.2.0",
"react-big-calendar": "^1.19.4",
"react-countup": "^6.5.3",
"react-dom": "^18.2.0",
"react-helmet-async": "3.0.0",
"react-i18next": "^13.5.0",
"react-icons": "^5.6.0",
"react-intersection-observer": "^10.0.3",
"react-qr-code": "^2.0.21",
"react-router-dom": "^7.15.1",
"react-toastify": "^11.1.0",
"react-virtualized-auto-sizer": "^2.0.3",
"react-window": "^1.8.10",
"recharts": "^3.8.1",
"zustand": "^5.0.14"
},
"scripts": {
"dev": "vite",
"start": "vite",
"mock:api": "node sse-mock-server.js",
"dev:full": "node scripts/dev-with-mock.mjs",
"vercel-build": "node scripts/validate-env.js && vite build",
"prebuild": "node scripts/validate-env.js",
"build": "vite build",
"build:fast": "cross-env GENERATE_SOURCEMAP=false vite build",
"preview": "vite preview",
"validate-env": "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/auth.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/Verifyauth.test.mjs tests/secureStorage.test.mjs tests/conflictDetection.test.mjs tests/eventRecommendationsResponsive.test.mjs tests/spatialSeatSelectorAccessibility.test.mjs tests/navbar.keyboard.test.mjs tests/shareModalUtils.test.mjs tests/distributedRateLimiter.test.mjs tests/serviceWorkerLeaderboard.test.mjs tests/eventReminder.test.mjs tests/p2pFileTransfer.test.mjs tests/useContrastChecker.test.mjs",
"test:e2e": "playwright test",
"check": "npm run lint && npm run test",
"lint": "eslint src --max-warnings=250",
"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/react": "16.3.2",
"@types/node": "^25.9.3",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.21",
"cross-env": "^10.1.0",
"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",
"playwright": "1.60.0",
"postcss": "8.5.15",
"prettier": "^3.2.5",
"storybook": "^10.4.1",
"tailwindcss": "^4.3.0",
"typescript": "^4.9.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"
},
"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."
}