Update to latest @extollo/lib & add contact API

This commit is contained in:
2022-11-14 19:49:34 -06:00
parent 155886eb39
commit ac1d221f38
11 changed files with 1010 additions and 575 deletions

View File

@@ -8,13 +8,15 @@
"lib": "lib"
},
"dependencies": {
"@extollo/lib": "^0.10.5",
"@atao60/fse-cli": "^0.1.7",
"@extollo/lib": "^0.14.8",
"@types/node": "^18.11.9",
"any-date-parser": "^1.5.3",
"copyfiles": "^2.4.1",
"feed": "^4.2.2",
"gotify": "^1.1.0",
"rimraf": "^3.0.2",
"ts-expose-internals": "^4.5.4",
"ts-node": "^10.9.1",
"ts-patch": "^2.0.1",
"ts-to-zod": "^1.8.0",
"typescript": "^4.3.2",
@@ -22,9 +24,11 @@
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "excc -c package.json -t tsconfig.json",
"app": "pnpm run build && node lib/index.js",
"cli": "pnpm run build && node lib/cli.js",
"build": "pnpm run clean && tsc -p tsconfig.json && fse copy --all --dereference --preserveTimestamps --keepExisting=false --quiet --errorOnExist=false src/app/resources lib/app/resources",
"clean": "rimraf lib",
"watch": "nodemon --ext js,pug,ts --watch src --exec 'ts-node src/index.ts'",
"app": "ts-node src/index.ts",
"cli": "ts-node src/cli.ts",
"docker:build": "docker build -t ${DOCKER_REGISTRY}/garrettmills/www .",
"docker:push": "docker push ${DOCKER_REGISTRY}/garrettmills/www"
},
@@ -51,6 +55,7 @@
}
},
"devDependencies": {
"@extollo/cc": "^0.6.0"
"@extollo/cc": "^0.6.0",
"rimraf": "^3.0.2"
}
}