-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 992 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 992 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
43
44
45
{
"name": "api-auth-reg",
"version": "1.0.0",
"description": "Projecte de servici Web RESTFul de Registre i Autenticació",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solsolet/api-auth-reg.git"
},
"keywords": [
"CRUD",
"REST",
"node",
"express",
"cors",
"mongo",
"jwt",
"token",
"moment",
"bcrypt"
],
"author": "Gemma Sellés Lloret",
"license": "ISC",
"bugs": {
"url": "https://github.com/solsolet/api-auth-reg/issues"
},
"homepage": "https://github.com/solsolet/api-auth-reg#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.3",
"jwt-simple": "^0.5.6",
"moment": "^2.29.2",
"mongodb": "^4.4.1",
"mongojs": "^3.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}