-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.09 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
37
38
39
40
{
"name": "editube-server",
"version": "1.0.0",
"description": "This is server for edittube application",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"keywords": [],
"author": "InnoSource-Labs",
"license": "ISC",
"dependencies": {
"@googleapis/youtube": "^13.0.0",
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"cloudinary": "^1.41.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-oauth2-jwt-bearer": "^1.6.0",
"google-auth-library": "^9.2.0",
"googleapis": "^128.0.0",
"mongoose": "^8.0.0",
"multer": "1.4.5-lts.1",
"streamifier": "^0.1.1"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0"
},
"engines": {
"node": "18.18.0"
}
}