-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
44
45
46
47
48
49
50
51
52
{
"name": "otr-web-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "set PORT=3000 && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@osu-tournament-rating/otr-api-client": "^0.0.17",
"@uidotdev/usehooks": "^2.4.1",
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"clsx": "^2.0.0",
"framer-motion": "^11.3.21",
"iron-session": "^8.0.1",
"next": "^14.1.2",
"next-themes": "^0.3.0",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-hotkeys-hook": "^4.5.0",
"react-range": "^1.8.14",
"react-select": "^5.9.0",
"react-tooltip": "^5.28.0",
"react-virtualized": "^9.22.5",
"react-wrap-balancer": "^1.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-virtualized": "^9.22.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "^5"
},
"lint-staged": {
"*.ts": "prettier --write"
}
}