forked from intri-in/manage-my-damn-life-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "manage-my-damn-life-nextjs",
"version": "0.3.5",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "npx sequelize-cli db:migrate --env local",
"undo-migrate": "npx sequelize-cli db:migrate:undo --env local",
"cypress": "cypress open"
},
"dependencies": {
"@auth/sequelize-adapter": "1.0.1",
"@babel/core": "7.21.8",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@fullcalendar/bootstrap": "6.1.5",
"@fullcalendar/bootstrap5": "6.1.8",
"@fullcalendar/common": "5.11.5",
"@fullcalendar/core": "6.1.8",
"@fullcalendar/daygrid": "6.1.8",
"@fullcalendar/interaction": "6.1.8",
"@fullcalendar/list": "6.1.8",
"@fullcalendar/react": "6.1.8",
"@fullcalendar/rrule": "6.1.6",
"@fullcalendar/timegrid": "6.1.8",
"@mui/icons-material": "5.11.11",
"@mui/material": "5.11.13",
"axios": "1.4.0",
"bcryptjs": "2.4.3",
"bootstrap": "5.2.3",
"bootstrap-icons": "1.10.3",
"crypto-js": "4.2.0",
"dexie": "3.2.3",
"dexie-react-hooks": "1.1.3",
"dotenv": "16.3.1",
"fuzzy-search": "3.2.1",
"gantt-task-react": "0.3.9",
"i18next": "22.4.13",
"ical": "0.8.0",
"ical-toolkit": "1.0.9",
"ical.js": "1.5.0",
"js-base64": "3.7.5",
"js-cookie": "3.0.1",
"keycloak-js": "22.0.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"mysql": "2.18.1",
"mysql2": "3.4.0",
"next": "13.2.4",
"next-auth": "4.22.3",
"nextjs-progressbar": "0.0.16",
"nodemailer": "6.9.1",
"popper.js": "1.16.1",
"rctx-contextmenu": "1.4.1",
"react": "18.2.0",
"react-bootstrap": "2.7.2",
"react-color": "2.19.3",
"react-datetime": "3.2.0",
"react-dom": "18.2.0",
"react-draggable": "4.4.5",
"react-i18next": "12.2.0",
"react-icons": "4.8.0",
"react-toastify": "9.1.1",
"rrule": "2.7.2",
"sequelize": "6.32.1",
"sequelize-cli": "6.6.1",
"timezone-validator": "1.0.3",
"tsdav": "2.0.3",
"validator": "13.9.0",
"vtodogenerator": "3.0.1"
},
"devDependencies": {
"@babel/preset-env": "7.21.5",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@types/node": "20.1.3",
"cypress": "12.17.1",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"node-mocks-http": "1.12.2",
"sequelize-auto": "0.8.8",
"typescript": "5.0.4"
}
}