-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "bot-do-tigrinho",
"version": "1.0.0",
"description": "jogo do tigrinho porem é um bot pro discord",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"services:up": "docker-compose -f ./infra/docker-compose.yml up -d",
"services:down": "docker-compose -f ./infra/docker-compose.yml stop",
"commit": "cz",
"migration:create": "node-pg-migrate --migrations-dir ./infra/migrations create",
"migration:run": "node -r dotenv-expand/config infra/scripts/wait-for-db-connection-ready.js && node-pg-migrate up --envPath ./.env -m infra/migrations/ 2>migrations.log",
"migration:dry-run": "node-pg-migrate up --dry-run --envPath ./.env -m infra/migrations",
"test": "jest"
},
"author": "eletroswing",
"license": "ISC",
"devDependencies": {
"commitizen": "^4.3.0",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"jest": "^29.7.0",
"node-pg-migrate": "^6.2.2",
"nodemon": "^3.0.2"
},
"dependencies": {
"async-retry": "^1.3.3",
"discord.js": "^14.14.1",
"easy-pix": "^1.2.0",
"pg": "^8.11.3",
"uuid": "^9.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}