forked from dev-luismiguel/dripstore-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 944 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
{
"name": "drip-store-fs08-api",
"version": "1.0.0",
"description": "When you're ready, start your application by running: `docker compose up --build`.",
"main": "src/app.js",
"scripts": {
"dev": "nodemon --env-file=.env.local",
"test": "echo \"Error: no test specified\" && exit 1",
"swagger:gen": "node src/utils/swagger.js",
"db:start": "docker-compose up -d --build",
"db:migrate": "npx sequelize-cli db:migrate",
"db:migration:new": "npx sequelize-cli migration:generate --name"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"http-status": "^1.7.4",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.2",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"nodemon": "^3.1.0",
"sequelize-cli": "^6.6.2",
"swagger-autogen": "^2.23.7"
}
}