-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.87 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.87 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "troud",
"version": "1.0.0",
"description": "Backend de aplicación Troud para intercambio de ropa",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.734.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"moment": "^2.27.0",
"mongodb": "^6.17.0",
"multer": "^2.0.1",
"multer-s3": "^3.0.1",
"passport": "^0.7.0",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"axios": "^1.10.0",
"chalk": "^4.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.1",
"mocha": "^10.8.2",
"nodemon": "^3.1.10",
"nyc": "^17.1.0",
"prettier": "^3.6.1",
"proxyquire": "^2.1.3",
"sinon": "^18.0.1",
"supertest": "^7.1.1"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "set NODE_ENV= development && mocha --exit",
"cover": "nyc npm run test",
"report": "nyc report --reporter=html && start coverage/index.html",
"test:connection": "node scripts/test-connection.js",
"test:auth": "node scripts/test-auth-endpoint.js",
"schema:setup": "node scripts/setup-database-schema.js",
"seed": "node scripts/seed-database.js",
"db:reset": "node scripts/reset-database.js",
"db:full-setup": "npm run schema:setup && npm run seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/personal/troud.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/personal/troud/issues"
},
"homepage": "https://github.com/personal/troud#readme",
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils",
"schemas"
]
}
}