-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "nodeUserAuthApi",
"version": "1.0.0",
"description": "A user signup, verification and authentication API",
"main": "app.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_ENV=test mocha --recursive test/ --exit",
"dev": "NODE_ENV=development nodemon src/server.js",
"start": "NODE_ENV=production node src/server.js"
},
"author": "Jesse Ojih",
"license": "MIT",
"repository": {
"url": "https://github.com/jesseinvent/nodeUserAuthApi",
"issues": "https://github.com/jesseinvent/nodeUserAuthApi/issues"
},
"engines": {
"node": "15.x"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-validator": "^6.12.1",
"helmet": "^4.6.0",
"http-status-codez": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.6.7",
"mongoose": "^5.13.3",
"morgan": "^1.10.0",
"nodemailer": "^6.6.3",
"otp-generator": "^2.0.1",
"response-time": "^2.3.2",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.31.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"supertest": "^6.1.3"
}
}