Skip to content

Commit

Permalink
feat(bn): migrate battle notifier to DB
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCorso committed Jun 28, 2023
1 parent 78cd6e4 commit 0d340f2
Show file tree
Hide file tree
Showing 36 changed files with 1,564 additions and 412 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
}
]
},
"plugins": ["prettier"]
"plugins": ["prettier"],
"types": ["vitest/globals"]
}
6 changes: 6 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
}
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@
"main": "index.js",
"scripts": {
"start": "nodemon --es-module-specifier-resolution=node --no-warnings",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" ."
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"test": "vitest"
},
"dependencies": {
"add": "^2.0.6",
"apisauce": "^3.0.1",
"bbcode-to-markdown": "^1.0.3",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
Expand All @@ -24,6 +26,7 @@
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "2.7.1"
"prettier": "2.7.1",
"vitest": "^0.32.2"
}
}
Loading

0 comments on commit 0d340f2

Please sign in to comment.