-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "elixpo-blogs",
"type": "module",
"dependencies": {
"@blocknote/core": "^0.47.1",
"@blocknote/mantine": "^0.47.1",
"@blocknote/react": "^0.47.1",
"bad-words": "^4.0.0",
"chokidar": "^3.6.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"cropperjs": "^2.1.0",
"crypto": "^1.0.1",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"firebase-admin": "^13.4.0",
"google-auth-library": "^10.3.0",
"jsonwebtoken": "^9.0.2",
"lru-cache": "^11.2.2",
"multer": "^2.0.2",
"next": "^15.3.0",
"nodemailer": "^7.0.5",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"redis": "^5.8.3",
"sharp": "^0.34.4"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"nodemon": "^3.1.10",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.9.3"
},
"scripts": {
"frontend": "next dev -p 3000",
"backend:dev": "node api/run-backend.js",
"dev": "concurrently \"npm run frontend\" \"npm run backend:dev\"",
"build": "next build",
"start": "next start"
}
}