-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.74 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
57
58
59
60
61
62
63
64
65
{
"name": "backend",
"version": "1.0.0",
"description": "backend en node.js con express, mongoose, jsonwebtoken y dotenv",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha tests/ --recursive --exec babel-node --exit --timeout 10000",
"test-watch": "mocha tests/ --recursive --exec babel-node --exit --timeout 10000 --watch",
"test-coverage": "nyc --reporter=html mocha tests/ --recursive --exec babel-node --exit --timeout 10000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "node .",
"dev": "nodemon .",
"eslint": "eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/escuelavirtual/backend/"
},
"keywords": [
"node.js",
"express",
"mongoose",
"nodemon",
"dotenv"
],
"author": "Escuela Virtual",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.11.2",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"express-list-endpoints": "^5.0.0",
"express-validator": "^6.6.1",
"faker": "^5.1.0",
"handlebars": "^4.7.6",
"hbs": "^4.1.1",
"http": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.4.2",
"mongoose": "^5.9.27",
"mysql2": "^2.1.0",
"nanoid": "^3.1.12",
"sequelize": "^6.3.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-node8": "^1.2.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"config": "^3.3.1",
"coveralls": "^3.1.0",
"debug": "^4.1.1",
"eslint": "^7.7.0",
"faker": "^5.1.0",
"mocha": "^8.1.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"sequelize-cli": "^6.2.0",
"sinon": "^9.0.2"
}
}