-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "freechess",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint && tsc --noEmit",
"deploy": "firebase deploy --project=freechessproject --only hosting"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.0",
"@iconify/react": "^5.1.0",
"@mui/lab": "^6.0.0-beta.21",
"@mui/material": "^6.3.0",
"@mui/x-data-grid": "^7.23.5",
"@sentry/nextjs": "^8.47.0",
"chess.js": "^1.0.0-beta.8",
"firebase": "^11.1.0",
"idb": "^8.0.1",
"jotai": "^2.11.0",
"next": "15.1.3",
"react": "18.3.1",
"react-chessboard": "^4.7.2",
"react-dom": "18.3.1",
"recharts": "^2.15.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "18.2.11",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"typescript": "^5.7.2"
}
}