-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.81 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
43
44
45
46
{
"name": "daily-news-discord",
"version": "1.0.0",
"scripts": {
"clean": "turbo run clean && rimraf node_modules",
"lint": "turbo run lint",
"build": "turbo run build",
"dev": "docker-compose -p dailynews_dev --env-file .env.development -f docker-compose.yml -f docker-compose.dev.yml up --build",
"start": "docker-compose -p dailynews_prod --env-file .env.production -f docker-compose.yml -f docker-compose.prod.yml up --build",
"deploy": "docker-compose -p dailynews_prod --env-file .env.production -f docker-compose.yml -f docker-compose.prod.yml up --build -d",
"stop": "docker-compose down",
"stop:dev": "docker-compose -p dailynews_dev --env-file .env.development down",
"stop:prod": "docker-compose -p dailynews_prod --env-file .env.production down",
"logs:dev": "docker-compose -p dailynews_dev logs -f",
"logs:prod": "docker-compose -p dailynews_prod logs -f",
"prepare": "husky install"
},
"keywords": [],
"author": "Eugene Matsumura",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"turbo": "^1.1.6",
"typescript": "^4.5.5"
},
"description": "Simple news bot created with discord.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SushiWaUmai/daily-news-discord.git"
},
"bugs": {
"url": "https://github.com/SushiWaUmai/daily-news-discord/issues"
},
"homepage": "https://github.com/SushiWaUmai/daily-news-discord#readme",
"packageManager": "[email protected]"
}