-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 950 Bytes
/
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
{
"name": "hackillinois-2025",
"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"
},
"dependencies": {
"@types/node": "^18.7.16",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"clsx": "^2.1.1",
"formik": "^2.4.6",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-select": "^5.9.0",
"yup": "^1.6.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass": "^1.80.4",
"sass-loader": "^16.0.2",
"typescript": "~5.5.4"
}
}