-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.72 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
97
98
99
100
101
102
{
"name": "node-express-mongodb-jwt-rest-api-skeleton",
"version": "8.1.1",
"description": "Node.js express.js MongoDB JWT REST API - This is a basic API REST skeleton written on JavaScript using async/await. Great for building a starter web API for your front-end (Android, iOS, Vue, react, angular, or anything that can consume an API)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davellanedam/node-express-mongodb-jwt-rest-api-skeleton.git"
},
"scripts": {
"start": "cross-env NODE_ENV=production pm2 start server.js",
"mocha": "nyc mocha --timeout=5000 --exit",
"test": "npm run fresh && npm run mocha",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"fresh": "npm run clean && npm run seed",
"clean": "node clean.js",
"seed": "node seed.js",
"format": "prettier --write --config .prettierrc.json \"**/*.js\"",
"lint": "eslint --fix --config .eslintrc.json \"**/*.js\"",
"remark": "remark . -o"
},
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv-parse": "^4.16.0",
"date-fns": "^2.23.0",
"dotenv-safe": "^8.2.0",
"ejs": "^3.1.6",
"exceljs": "^3.10.0",
"expeditious-engine-redis": "^0.1.2",
"express": "^4.17.1",
"express-expeditious": "^5.1.1",
"express-validator": "^6.12.1",
"helmet": "^3.23.3",
"i18n": "^0.8.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.13.3",
"mongoose-paginate-v2": "^1.4.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.3",
"nodemailer-mailgun-transport": "^2.1.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"remark-cli": "^8.0.1",
"request-ip": "^2.1.3",
"trim-request": "^1.0.6",
"uuid": "^7.0.3",
"validator": "^13.6.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"faker": "^4.1.0",
"husky": "^4.3.8",
"mocha": "^7.2.0",
"mongo-seeding": "^3.7.0",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"prettier-eslint": "^9.0.2"
},
"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"
]
}