-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 KB
/
package.json
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
{
"name": "marvel-francl-in",
"description": "Aplicação _backend_ com autenticação, gerenciamentos de usuários e de comics/characters favoritos.",
"version": "0.0.0",
"private": false,
"license": "MIT",
"author": {
"name": "Franclin Sousa",
"email": "[email protected]",
"url": "https://francl.in"
},
"homepage": "http://marvel.francl.in",
"repository": {
"url": "https://github.com/franclinsousa/marvel-silver-enigma-api.git"
},
"engines": {
"node": "14.x"
},
"type": "commonjs",
"main": "main.js",
"scripts": {
"start": "node main",
"test": "jest -i --coverage"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"debug": "^4.3.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.3",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"sequelize": "^6.6.2",
"winston": "^3.3.3"
},
"devDependencies": {
"jest": "^26.6.3",
"supertest": "^6.1.3",
"sqlite3": "^5.0.2"
}
}