-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.68 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": "6.1.16",
"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": "NODE_ENV=production pm2 start server.js",
"mocha": "nyc mocha --timeout=5000 --exit",
"test": "npm run fresh && npm run mocha",
"dev": "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"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run remark",
"pre-push": "npm run test"
}
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"dotenv-safe": "^6.1.0",
"ejs": "^2.6.1",
"expeditious-engine-redis": "^0.1.2",
"express": "^4.17.1",
"express-expeditious": "^5.0.0",
"express-validator": "^5.3.1",
"helmet": "^3.18.0",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.11",
"mongoose-paginate-v2": "^1.3.0",
"morgan": "^1.9.1",
"nodemailer": "^6.2.1",
"nodemailer-mailgun-transport": "^1.4.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"remark-cli": "^6.0.1",
"request-ip": "^2.1.3",
"trim-request": "^1.0.6",
"uuid": "^3.3.2",
"validator": "^11.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^5.16.0",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"faker": "^4.1.0",
"husky": "^2.3.0",
"mocha": "^6.1.4",
"mongo-seeding": "^3.1.1",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"prettier-eslint": "^8.8.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"
]
}