-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 876 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
{
"name": "voxaroo_backend",
"version": "1.0.0",
"description": "E-commerce backend API ",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js",
"migrations:generate": "sequelize-cli migration:generate --name",
"migrations:run": "sequelize-cli db:migrate",
"migrations:undo": "sequelize-cli db:generate:undo"
},
"keywords": [
"E-commerce",
"voxaroo",
"Mexico"
],
"author": "Fabian Gutierrez",
"license": "ISC",
"dependencies": {
"bcrypt": "5.1.1",
"dotenv": "16.3.1",
"express": "4.18.2",
"generate-password": "1.7.0",
"joi": "17.10.2",
"jsonwebtoken": "9.0.2",
"mysql2": "3.6.1"
},
"eslintConfig": {
"extends": "standard"
},
"devDependencies": {
"nodemon": "3.0.1",
"standard": "17.1.0"
}
}