-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
{
"name": "facebook-clone-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "DEBUG=facebook-clone-api:* nodemon ./bin/www",
"build:ui": "rm -rf build && cd ../facebook-clone-frontend && npm run build && cp -r build ../facebook-clone-api"
},
"engines": {
"node": "12.16.x"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.22.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-validator": "^6.5.0",
"faker": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.26.0",
"mongoose": "^5.9.18",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-jwt": "^4.0.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"mongodb-memory-server": "^6.6.1",
"nodemon": "^2.0.4"
}
}