-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.73 KB
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
53
54
55
56
57
{
"private": true,
"scripts": {
"lint": "next lint",
"dev": "next dev",
"build": "next build",
"start": "next start",
"createTestData": "ts-node --project ./node.tsconfig.json src/scripts/createTestData.ts",
"generateStatistics": "ts-node --project ./node.tsconfig.json src/scripts/generateStatistics.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.259.0",
"@date-io/date-fns": "^2.16.0",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^3.9.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.6",
"@mui/x-date-pickers": "^5.0.17",
"@next/font": "^13.1.6",
"@tanstack/react-query": "^5.52.2",
"@types/react-dom": "^18.3.0",
"axios": "^1.2.6",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"mongoose": "^8.5.4",
"next": "^14.2.6",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"swr": "^2.0.3",
"ts-node": "^10.9.1",
"uuid": "^9.0.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@tanstack/eslint-plugin-query": "^5.52.0",
"@types/lodash": "^4.14.202",
"@types/node": "^18.11.18",
"@types/react": "^18.3.4",
"@types/react-beautiful-dnd": "^13.1.3",
"@types/sharp": "^0.31.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.3",
"typescript": "^5.5.4"
}
}