-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.34 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": "mern-photo-gallery-app",
"version": "1.0.0",
"description": "photo gallery app with mern stack",
"main": "server.js",
"engines": {
"node": "12.16.0"
},
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-node\"",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"keywords": [
"react",
"node",
"express"
],
"author": "Michele Zucca",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cloudinary": "^1.32.0",
"concurrently": "^7.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"google-auth-library": "^8.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"moment": "^2.29.4",
"mongoose": "^6.6.6",
"multer": "^1.4.2",
"node-sass": "^7.0.3",
"nodemon": "^2.0.20",
"npm": "^8.19.2",
"prettier": "^2.7.1",
"pug": "^3.0.2"
}
}