-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "drivehub",
"version": "1.0.0",
"description": "Drive para uso personal",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=developent node --watch --env-file=.env index.js",
"start": "cross-env NODE_ENV=production node --watch --env-file=.env index.js",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --verbose --forceExit",
"test:watch": "npm run test --watch",
"testPerformance": "autocannon localhost:4000"
},
"author": "Camilo Developer",
"license": "ISC",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"bcrypt": "^5.1.0",
"chance": "^1.1.11",
"colors": "^1.4.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"jsonwebtoken": "^9.0.0",
"libreoffice-convert": "^1.4.1",
"mime-types": "^2.1.35",
"mongoose": "^7.6.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.6",
"qrcode": "^1.5.3",
"sharp": "^0.32.6",
"standard": "^17.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"throttle": "^1.0.3",
"xoauth2": "^1.2.0"
},
"devDependencies": {
"autocannon": "^7.12.0",
"eslint": "^8.43.0",
"i": "^0.3.7",
"jest": "^29.5.0",
"morgan": "^1.10.0",
"npm": "^10.2.3",
"supertest": "^6.3.3"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json",
"env": {
"jest": true
}
}
}