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
102 lines (102 loc) · 3.59 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.59 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
{
"name": "eventra-website",
"version": "1.0.0",
"description": "A modern website for Eventra - platform for builders",
"private": true,
"dependencies": {
"@headlessui/react": "^2.2.8",
"@heroicons/react": "^2.0.16",
"@react-oauth/google": "^0.13.5",
"@studio-freight/lenis": "^1.0.42",
"@tailwindcss/postcss": "4.3.0",
"aos": "^2.3.4",
"axios": "^1.16.1",
"canvas-confetti": "^1.9.3",
"crypto-js": "^4.2.0",
"date-fns": "^4.3.0",
"dompurify": "3.4.6",
"framer-motion": "^12.40.0",
"fuse.js": "^7.1.0",
"html2canvas": "^1.4.1",
"jsdom": "29.1.1",
"jspdf": "^4.2.1",
"lucide-react": "^0.542.0",
"marked": "18.0.4",
"prop-types": "^15.8.1",
"react": "^19.2.6",
"react-big-calendar": "^1.19.4",
"react-countup": "^6.5.3",
"react-dom": "^19.2.6",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.6.0",
"react-intersection-observer": "^10.0.3",
"react-is": "^19.2.6",
"react-qr-code": "^2.0.21",
"react-router-dom": "^7.15.1",
"react-scripts": "^5.0.1",
"react-toastify": "^11.1.0",
"recharts": "^3.8.1",
"@sentry/react": "^10.54.0"
},
"scripts": {
"dev": "set DISABLE_ESLINT_PLUGIN=true && react-scripts start",
"start": "react-scripts start",
"prebuild": "node scripts/validate-env.js",
"build": "react-scripts build",
"build:fast": "cross-env GENERATE_SOURCEMAP=false DISABLE_ESLINT_PLUGIN=true NODE_OPTIONS=\"--no-deprecation --max-old-space-size=4096\" react-scripts build",
"validate-env": "node scripts/validate-env.js",
"test": "react-scripts test",
"test:unit": "node tests/eventPaginationUtils.test.mjs && node tests/routeSearchUtils.test.mjs && node tests/userNameUtils.test.mjs && node tests/relativeTime.test.mjs && node tests/registerUtils.test.mjs && node tests/bookmarkUtils.test.mjs && node tests/auth.test.mjs && node tests/passwordResetEndpoint.test.mjs && node tests/eventDraftUtils.test.mjs && node tests/exportCsv.test.mjs && node tests/githubProxy.test.mjs && node tests/hackathonFilterUtils.test.mjs && node tests/loginEndpoint.test.mjs && node tests/googleOAuthEndpoint.test.mjs && node tests/logoutEndpoint.test.mjs",
"test:e2e": "playwright test",
"eject": "react-scripts eject",
"lint": "eslint src --ext .js,.jsx --max-warnings=-1",
"lint:fix": "eslint src --ext .js,.jsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,css}\"",
"prepare": "node scripts/setup-git-config.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@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",
"@tailwindcss/line-clamp": "^0.4.4",
"autoprefixer": "^10.4.21",
"cross-env": "^10.1.0",
"eslint-plugin-storybook": "10.4.1",
"postcss": "8.5.15",
"prettier": "^3.2.5",
"storybook": "^10.4.1",
"tailwindcss": "^3.4.19",
"typescript": "^4.9.5",
"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"
}
}