-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "portfolio-website",
"version": "1.0.0",
"description": "My Personal website",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/CrestNiraj12/portfolio-website.git"
},
"scripts": {
"start": "node server",
"azure": "npm install --prefix client && npm run build --prefix client && node backend/config/utils/optimizeBuildImages.js",
"dev": "concurrently \"nodemon server\" \"cd client && npm start\" \"cd client && npm run watch-sass\"",
"serve": "serve -s client/build"
},
"author": "Niraj Shrestha",
"license": "GNU GPL v3",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.9.2",
"helmet": "^3.23.3",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.1",
"jimp": "^0.16.1",
"lodash": "^4.17.21",
"mongoose": "^5.11.10",
"multer": "^1.4.2",
"nodemailer": "^6.4.17",
"nodemailer-smtp-transport": "^2.7.4",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.7",
"serve": "^11.3.2"
}
}