-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "hackillinois-hype",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@types/node": "20.6.3",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"clsx": "^2.1.0",
"eslint": "8.49.0",
"eslint-config-next": "^14.0.1",
"lottie-react": "^2.4.0",
"lottie-web": "^5.12.2",
"next": "^14.0.1",
"next-qrcode": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-select": "^5.8.0",
"sass": "^1.68.0",
"seedrandom": "^3.0.5",
"typescript": "5.2.2",
"validator": "^13.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
},
"lint-staged": {
"*.--write": "prettier --write"
}
}