forked from harshjoeyit/HotClix
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "snaphot",
"version": "1.0.0",
"description": "photo management",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "harshjoeyit",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "^7.4.7",
"aws-sdk": "^2.820.0",
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
"is-jpg": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"nodemon": "^2.0.6",
"react-download-link": "^2.3.0",
"sharp": "^0.27.0",
"uuid": "^8.3.2"
}
}