chikinz/package.json
Paul Mathieu 0c9c893237 Add backend
With jwt authentication.

- POST /toktok {password} -> {token}
- GET /bandz -> {bandz}
- POST /wrap -> {id}
2022-09-07 12:40:19 +02:00

18 lines
379 B
JSON

{
"name": "chikinz",
"version": "1.0.0",
"description": "a backend for ze chikinz",
"main": "index.js",
"author": "Paul Mathieu <paul@ponteilla.net>",
"license": "MIT",
"dependencies": {
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"sqlite3": "^5.0.11"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}