-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.45 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
{
"name": "studomate",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack && cp -r public .next/standalone/public && cp -r .next/static .next/standalone/.next/static",
"start": "next start",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@mui/x-data-grid": "^8.27.1",
"@mui/x-tree-view": "^8.14.0",
"@sentry/nextjs": "^8",
"@supabase/supabase-js": "^2.112.3",
"@xyflow/react": "^12.8.4",
"date-fns": "^4.1.0",
"dom-to-image": "^2.6.0",
"html2pdf.js": "^0.14.0",
"jspdf": "^4.2.1",
"mitt": "^3.0.1",
"nanoid": "^5.1.16",
"next": "15.5.2",
"nextjs-toploader": "^3.9.17",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-toastify": "^11.0.5",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/dom-to-image": "^2.6.7",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.4.1",
"ts-jest": "^29.4.6",
"typescript": "^5"
}
}