-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.16 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"name": "seed-auth-api",
"version": "1.0.0",
"description": "Proyecto base para levantar un API REST en Node JS (servidor de autenticación)",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node ./node_modules/mocha/bin/mocha tests/**/*.test.js",
"test:unit": "node ./node_modules/mocha/bin/mocha tests/unit/**/*.test.js",
"test:integration": "node ./node_modules/mocha/bin/mocha tests/integration/**/*.test.js",
"dev": "nodemon index.js"
},
"author": "devnido",
"license": "ISC",
"dependencies": {
"awilix": "^4.2.5",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.11",
"nodemailer": "^6.4.4",
"rand-token": "^0.4.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-jwt": "^2.0.0",
"mocha": "^7.1.1",
"morgan": "^1.9.1",
"sinon": "^9.0.1",
"supertest": "^4.0.2"
}
}