-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 874 Bytes
/
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
{
"name": "mercadoabierto-backend",
"version": "1.0.0",
"description": "backend for a 'mercadolibre' clone called 'mercadoabierto'",
"main": "api/index.js",
"scripts": {
"start": "node api/index.js",
"dev": "nodemon api/index.js",
"test": "jest"
},
"keywords": [],
"author": "Carlos Martínez",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"module-alias": "^2.2.2",
"mysql": "^2.18.1",
"nanoid": "^3.1.19",
"request": "^2.88.2"
},
"_moduleAliases": {
"@auth": "auth/",
"@store": "store/",
"@network": "network/",
"@utils": "utils/",
"@config": "config.js"
},
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"supertest": "^6.0.1"
}
}