-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 974 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 974 Bytes
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
{
"name": "waves",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js",
"server": "nodemon server/server.js",
"client": "npm run 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": "Parvez",
"license": "ISC",
"engines": {
"node": "11.9.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cloudinary": "^1.11.0",
"concurrently": "^3.6.0",
"cookie-parser": "^1.4.3",
"crypto-js": "^3.1.9-1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-formidable": "^1.0.0",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mongoose": "^5.1.6",
"multer": "^1.4.1",
"nodemailer": "^5.1.1"
}
}