-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1002 Bytes
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
{
"name": "express-auth",
"version": "1.0.0",
"description": "API creating auth system with express and mangoes trying to use clean code architecture",
"main": "app.js",
"type": "module",
"scripts": {
"test": "NODE_ENV=test mocha",
"start": "NODE_ENV=development nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yax94/Express-Auth.git"
},
"keywords": [
"boilerplate",
"clean code",
"authentification"
],
"author": "Yacine Nabet",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yax94/Express-Auth/issues"
},
"homepage": "https://github.com/Yax94/Express-Auth#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"mocha": "^8.0.1",
"mongoose": "^5.9.23"
},
"devDependencies": {
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.4"
}
}