-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.18 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
56
{
"name": "clothify-api",
"version": "1.4.2",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"add-error": "node scripts/addError.js",
"test": "mocha --exit",
"test:cover": "nyc npm run test"
},
"keywords": [
"javascript",
"node",
"express"
],
"author": "Mariangélica Useche <[email protected]>",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.736.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.18.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"prompt": "^1.0.0",
"proxyquire": "^2.1.3",
"sinon": "^9.0.3",
"supertest": "^4.0.2"
},
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils",
"schema",
"middleware"
]
}
}