is-critter/package.json
Vincent Batts ef4e816dac
All checks were successful
Basic Checking / Explore-Gitea-Actions (push) Successful in 50s
*: restructuring to make testing flow nicer
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2023-09-26 15:07:54 -04:00

28 lines
610 B
JSON

{
"name": "critter-express",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "node server.js",
"act": "act -W ./.gitea/workflows/"
},
"repository": {
"type": "git",
"url": "https://git.batts.cloud/vbatts/is-critter"
},
"author": "Vincent Batts <vbatts@hashbangbash.com>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"bole": "^5.0.7",
"express": "^4.18.2",
"morgan": "^1.10.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.3"
}
}