-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha 'test/**/*.spec.js' --exit",
"test-single": "mocha",
"test-report": "mocha test/**/*.spec.js --reporter mochawesome --require mochawesome/register"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1106.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"bson": "^4.6.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"file-stream-rotator": "^0.6.1",
"google-auth-library": "^7.14.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.5",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"nodemon": "^2.0.15",
"redis": "^4.0.6",
"request": "^2.88.2",
"rotating-file-stream": "^3.0.3",
"statuses": "^2.0.1",
"stripe": "^8.195.0",
"swagger-ui-express": "^4.3.0",
"validator": "^13.7.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"mocha": "^9.2.2",
"mochawesome": "^7.1.3",
"nock": "^13.2.4",
"sinon": "^13.0.2"
}
}