-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "parches-pharmastore",
"version": "0.0.2",
"description": "Pharmastore API backend",
"main": "index.js",
"scripts": {
"dev": "set NODE_ENV=development && nodemon app.js",
"db@dev": "sequelize db:drop && sequelize db:create && sequelize db:migrate && sequelize db:seed:all",
"db@prod": "sequelize db:migrate",
"start": "set NODE_ENV=production && node app.js",
"test:unit": "set NODE_ENV=test && mocha ./tests/unit/*.js --exit --timeout 0",
"test:integration": "set NODE_ENV=test && mocha ./tests/integration/*.js --exit --timeout 0"
},
"keywords": [
"farmacia",
"parches",
"pharmastore"
],
"author": "Manuel Cabral",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"sequelize": "^6.29.0",
"sequelize-cli": "^6.5.2"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3"
}
}