-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "clannad-family-tree",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "next start",
"all": "concurrently \"npm run dev\" \"npm run server\"",
"dev": "next dev",
"server": "npm run dev --prefix server",
"build": "next build",
"test": "jest --watch",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/public-sans": "^4.5.11",
"@fontsource/quicksand": "^4.5.11",
"@fontsource/work-sans": "^4.5.12",
"@hookform/resolvers": "^3.1.0",
"@mui/icons-material": "^5.11.11",
"@mui/joy": "^5.0.0-beta.21",
"@next/font": "13.0.7",
"@reduxjs/toolkit": "^1.9.3",
"@tanstack/react-query": "^5.28.0",
"axios": "^1.2.2",
"dayjs": "^1.11.10",
"next": "^13.1.2",
"next-auth": "^4.20.1",
"react": "^18.2.0",
"react-d3-tree": "^3.5.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.3",
"react-query": "^3.39.2",
"react-redux": "^8.0.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"concurrently": "^8.1.0",
"eslint": "8.30.0",
"eslint-config-next": "^13.1.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1"
}
}