You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
881 B
36 lines
881 B
{
|
|
"name": "page-recorder",
|
|
"version": "1.0.0",
|
|
"description": "A service for recording videos of a webpage",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "nodemon src/index.js"
|
|
},
|
|
"author": {
|
|
"name": "Logan Koester",
|
|
"url": "https://ldk.dev",
|
|
"email": "logan@logankoester.com"
|
|
},
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@hapi/catbox-redis": "^6.0.2",
|
|
"@hapi/hapi": "^20.2.1",
|
|
"@hapi/inert": "^6.0.4",
|
|
"@hapi/vision": "^6.1.0",
|
|
"filenamify-url": "^3.0.0",
|
|
"hapi-auth-jwt2": "^10.2.0",
|
|
"hapi-dev-errors": "^4.0.0",
|
|
"hapi-pino": "^9.1.0",
|
|
"hapi-swagger": "^14.2.4",
|
|
"moment": "^2.29.1",
|
|
"pino-pretty": "^7.3.0",
|
|
"puppeteer": "^10.4.0",
|
|
"timecut": "^0.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.1",
|
|
"nodemon": "^2.0.15"
|
|
}
|
|
}
|
|
|