-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "hackillinois-2025",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && npx prettier . --check",
"format": "npx prettier . --write",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.4",
"@mui/material": "^7.3.4",
"@mui/material-nextjs": "^7.3.5",
"@opennextjs/cloudflare": "^1.14.8",
"clsx": "^2.1.1",
"d3-geo": "^3.1.1",
"formik": "^2.4.6",
"moment-timezone": "^0.6.0",
"motion": "^12.23.22",
"next": "^15.1.11",
"qrcode.react": "^4.2.0",
"react": "^19.2.3",
"react-confetti": "^6.4.0",
"react-curved-text": "^3.0.1",
"react-dom": "^19.2.3",
"react-simple-maps": "^3.0.0",
"yup": "^1.6.0"
},
"devDependencies": {
"@types/moment-timezone": "^0.5.13",
"@types/node": "^18.7.16",
"@types/react": "^19.2.3",
"@types/react-curved-text": "^2.0.3",
"@types/react-dom": "^19.2.3",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.0",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.5.1",
"sass": "^1.80.4",
"sass-loader": "^16.0.2",
"typescript": "~5.5.4",
"wrangler": "^4.58.0"
},
"overrides": {
"react-simple-maps": {
"d3-zoom": "^3.0.0",
"d3-interpolate": "^3.0.1",
"d3-color": "^3.1.0",
"d3-geo": "^3.1.0",
"d3-selection": "^3.0.0",
"react": "^16.8.0 || 17.x || 18.x || 19.x",
"react-dom": "^16.8.0 || 17.x || 18.x || 19.x"
}
}
}