forked from LDTorres/leadaki-dev-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.15 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "leadaki-dev-test",
"version": "0.0.1",
"description": "Prueba",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LDTorres/leadaki-dev-test"
},
"scripts": {
"start": "node server.js",
"mocha": "nyc mocha --timeout=5000 --exit",
"test": "npm run fresh && npm run mocha",
"dev": "SET NODE_ENV=development && nodemon server.js",
"clean": "node clean.js",
"format": "prettier --write --config .prettierrc.json \"**/*.js\""
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.4.1",
"dotenv-safe": "^8.1.0",
"ejs": "^2.7.1",
"expeditious-engine-redis": "^0.1.2",
"express": "^4.17.1",
"express-expeditious": "^5.1.1",
"express-validator": "^6.2.0",
"helmet": "^3.21.1",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.1",
"mongoose-paginate-v2": "^1.3.1",
"morgan": "^1.9.1",
"nodemailer": "^6.3.0",
"nodemailer-mailgun-transport": "^1.4.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"remark-cli": "^7.0.0",
"request-ip": "^2.1.3",
"trim-request": "^1.0.6",
"uuid": "^3.3.3",
"validator": "^11.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.5.0",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"faker": "^4.1.0",
"husky": "^3.0.7",
"mocha": "^6.2.1",
"mongo-seeding": "^3.3.0",
"nodemon": "^1.19.3",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0"
},
"keywords": [
"javascript",
"api",
"node",
"express",
"mongo",
"mongodb",
"jwt",
"postman",
"i18n",
"jwt-authentication",
"token",
"eslint",
"starter",
"web",
"app",
"mongoose",
"rest",
"skeleton",
"async",
"await",
"mvp",
"front-end",
"testing",
"prettier",
"mocha",
"chai",
"redis",
"JSDoc"
],
"engines": {
"node": ">=10.15.3",
"npm": ">=6.4.1"
}
}