is-critter/express/package.json
Vincent Batts 94eac4f89b
All checks were successful
Basic Checking / Explore-Gitea-Actions (push) Successful in 7s
*: beginning unittest setup
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2023-09-26 12:38:11 -05:00

27 lines
569 B
JSON

{
"name": "critter-express",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "node server.js"
},
"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"
}
}