-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·60 lines (60 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.51 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mently-boilerplate",
"version": "1.0.1",
"description": "MENTLy Mongo Express Node Tested Login. A boilerplate application for building a RESTful APIs in Node.js using express.",
"main": "bin/index.js",
"bin": {
"MENTL-Boilerplate": "index.js"
},
"scripts": {
"dev": "env-cmd -f ./.config/dev.env node bin/index.js",
"test": "env-cmd -f ./.config/test.env ./node_modules/mocha/bin/mocha tests --recursive --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dune44/CENTLy-Boilerplate.git"
},
"keywords": [
"mongo",
"express",
"jsonwebtoken",
"jwt",
"api",
"mocha",
"chai",
"boilerplate",
"template"
],
"author": "Richard Silence",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dune44/MENTLy-Boilerplate/issues"
},
"homepage": "https://github.com/dune44/MENTLy-Boilerplate#readme",
"dependencies": {
"bcrypt": "5.0.1",
"body-parser": "1.19.0",
"express": "4.17.1",
"express-rate-limit": "5.2.6",
"helmet": "4.6.0",
"jsonwebtoken": "8.5.1",
"moment": "2.29.1",
"moment-json-parser": "0.9.1",
"mongodb": "3.6.9",
"mongoose": "5.12.13",
"nodemailer": "6.6.1",
"qrcode": "1.4.4",
"speakeasy": "2.0.0",
"validator": "13.6.0"
},
"devDependencies": {
"chai": "4.3.4",
"chai-http": "4.3.0",
"chai-totp": "1.0.1",
"dirty-chai": "2.0.1",
"env-cmd": "10.1.0",
"mocha": "9.0.0",
"otplib": "12.0.1",
"supertest": "6.1.3"
}
}