-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "blogsite",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"server": "nodemon back/server.js",
"client": "npm run dev --prefix front",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm install & npm install --prefix front && npm run build --prefix front"
},
"author": "Giangarof",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.3",
"concurrently": "^8.2.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dompurify": "^3.1.7",
"dotenv": "^16.3.1",
"express": "^4.21.0",
"express-session": "^1.17.3",
"js-cookies": "^1.0.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemon": "^3.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12"
}
}