Basic boilerplate added.

This commit is contained in:
BurnyLlama 2021-09-25 11:57:55 +02:00
parent 1463ec6d33
commit a47536d404
2 changed files with 8 additions and 1 deletions

3
.gitignore vendored
View File

@ -116,3 +116,6 @@ dist
.yarn/install-state.gz .yarn/install-state.gz
.pnp.* .pnp.*
package-lock.json
pnpm-lock.yaml

View File

@ -3,6 +3,7 @@
"version": "0.0.1", "version": "0.0.1",
"description": "A DDNet Status and Statistics API.", "description": "A DDNet Status and Statistics API.",
"main": "index.js", "main": "index.js",
"type": "module",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
@ -14,5 +15,8 @@
"ddnet" "ddnet"
], ],
"author": "BurnyLlama, furo", "author": "BurnyLlama, furo",
"license": "WTFPL" "license": "WTFPL",
"dependencies": {
"express": "^4.17.1"
}
} }