mirror of
https://github.com/DCsunset/taskwarrior-webui.git
synced 2025-08-25 18:17:18 +02:00
feat(backend): add basic backend server
This commit is contained in:
parent
2de2de0c60
commit
5a92944a5d
8 changed files with 1797 additions and 0 deletions
30
backend/package.json
Normal file
30
backend/package.json
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"name": "backend",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "ts-node src/app.ts"
|
||||
},
|
||||
"author": "DCsunset",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"dependencies": {
|
||||
"@koa/router": "^9.0.1",
|
||||
"koa": "^2.13.0",
|
||||
"koa-bodyparser": "^4.3.0",
|
||||
"koa-logger": "^3.2.1",
|
||||
"taskwarrior-lib": "^0.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/koa": "^2.11.3",
|
||||
"@types/koa-bodyparser": "^4.3.0",
|
||||
"@types/koa-logger": "^3.1.1",
|
||||
"@types/koa-router": "^7.4.1",
|
||||
"@types/koa__router": "^8.0.2",
|
||||
"@typescript-eslint/eslint-plugin": "^3.5.0",
|
||||
"@typescript-eslint/parser": "^3.5.0",
|
||||
"eslint": "^7.3.1",
|
||||
"ts-node": "^8.10.2",
|
||||
"typescript": "^3.9.5"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue