-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "itschilltimeapp",
"version": "1.1.0",
"description": "NodeJS Bootcamp custom project - Developed as a Youtube's replica",
"main": "app.js",
"scripts": {
"start": "node src/app.js",
"seed": "env-cmd -f ./src/config/.env node ./src/utils/seed.js",
"dev": "env-cmd -f ./src/config/.env nodemon ./app.js -e js,hbs",
"test": "env-cmd -f ./src/config/test.env jest --watch --runInBand"
},
"author": "José Duque",
"license": "ISC",
"dependencies": {
"axios": "^0.22.0",
"bad-words": "^3.0.4",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.1.2",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"ffmpeg-static": "^4.4.0",
"ffprobe-static": "^3.0.0",
"fluent-ffmpeg": "^2.1.2",
"hbs": "^4.1.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongodb": "^4.1.2",
"mongoose": "^6.0.8",
"multer": "^1.4.3",
"node-sass-middleware": "^0.11.0",
"validator": "^13.6.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^27.2.5",
"nodemon": "^2.0.13",
"supertest": "^6.1.6"
}
}