Write the mini-package for the server

This commit is contained in:
2022-03-27 17:06:16 -07:00
commit 1b852b8599
5 changed files with 819 additions and 0 deletions

13
package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "katex-server",
"version": "1.0.0",
"description": "A miniature web API to render KaTeX for use in internal projects.",
"main": "server.js",
"author": "Danila Fedorin",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.2",
"express": "^4.17.3",
"katex": "^0.15.3"
}
}