-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 944 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
42
43
44
{
"name": "vidtube-server",
"version": "1.0.0",
"description": "A YouTube clone with basic features",
"keywords": [
"nodejs",
"express",
"expressjs",
"server",
"node"
],
"main": "index.js",
"scripts": {
"start": "node -r esm index.js",
"start:dev": "nodemon -r esm index.js"
},
"author": "Ashiru Olawale",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.21.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"datauri": "^3.0.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.14",
"multer": "^1.4.2",
"sharpdashboard-sdk-node": "^1.1.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"repository": {
"type": "git",
"url": "git://github.com/wale-bant/vidTube-server.git"
},
"engines": {
"node": "12.x"
}
}