-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.02 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "citronics",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix \"src/**/*.{js,jsx}\"",
"lint:check": "eslint \"src/**/*.{js,jsx}\"",
"format": "prettier --write \"src/**/*.{js,jsx,json}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,json}\"",
"db:migrate": "node src/services/database/migrate.js",
"db:status": "node src/services/database/migrate.js status",
"db:reset": "node src/services/database/migrate.js reset"
},
"dependencies": {
"@casl/ability": "^6.7.2",
"@casl/react": "^4.0.0",
"@emotion/cache": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@iconify/react": "^5.0.2",
"@mui/material": "^6.3.0",
"@mui/system": "^6.3.0",
"@mui/utils": "^6.3.0",
"@mui/x-data-grid": "7",
"@reduxjs/toolkit": "^2.5.0",
"@tabler/icons-react": "^3.26.0",
"@theme-toggles/react": "^4.1.0",
"apexcharts": "^5.10.1",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"expresscheckout-nodejs": "^1.0.0",
"framer-motion": "^12.34.3",
"i18next": "^23.11.0",
"jspdf": "^4.2.0",
"next": "^14.2.29",
"next-auth": "^4.24.11",
"next-cloudinary": "^6.17.5",
"nodemailer": "^8.0.1",
"nprogress": "^0.2.0",
"pg-promise": "^11.10.2",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-apexcharts": "^2.1.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-hot-toast": "^2.4.1",
"react-i18next": "^15.1.0",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^9.2.0",
"sharp": "^0.34.5",
"uuid": "^13.0.0",
"vercel": "^50.23.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@svgr/webpack": "^8.1.0",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.3",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}