-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 980 Bytes
/
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
{
"name": "loginsignup",
"version": "1.0.0",
"description": "the rest API for login and sign-up",
"main": "index.js",
"scripts": {
"start": "node .",
"build": "npm install && cd ./client && npm install && npm run build && cd ..",
"dev": "nodemon .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.25.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.19",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"request": "^2.88.2",
"web3": "^1.3.5"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"nodemonConfig": {
"ignore": [
"client/*"
]
}
}