-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1022 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1022 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
42
{
"name": "users.manager.api",
"version": "1.0.0",
"description": "users.manager api",
"main": "./src/main.js",
"type": "module",
"scripts": {
"server:build": "npm i",
"server:develop": "nodemon ./src/main.js",
"server:production": "node ./src/main.js",
"docs": "jsdoc -c /jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Germancitoz/users.manager.api.git"
},
"keywords": [
"nodejs",
"api"
],
"author": "Germancito",
"license": "ISC",
"bugs": {
"url": "https://github.com/Germancitoz/users-manager/issues"
},
"homepage": "https://github.com/Germancitoz/users-manager#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"jsdoc": "^3.6.7",
"jsdoc-http-plugin": "^0.3.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.5",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^2.0.13"
}
}