photosite/package.json

54 lines
1.5 KiB
JSON
Raw Normal View History

2024-01-06 05:25:07 +00:00
{
"name": "photosite",
"version": "0.0.1",
"description": "Static site generator for processing photos.",
"main": "dist/index.js",
"scripts": {
"test": "node test/",
"compile": "./node_modules/.bin/tsc -p tsconfig.json",
"build": "bash scripts/build.sh",
"generate": "bash scripts/generate.sh",
"all": "bash scripts/generate.sh"
2024-01-06 05:25:07 +00:00
},
"repository": {
"type": "git",
"url": "https://git.sixteenmillimeter.com/mattmcw/photosite.git"
},
"author": "Matthew McWilliams",
"license": "MIT",
"devDependencies": {
2024-12-09 20:15:27 +00:00
"@types/argparse": "^2.0.17",
2024-01-06 05:25:07 +00:00
"@types/handlebars-helpers": "^0.5.6",
"@types/lodash": "^4.14.202",
2024-12-03 04:09:32 +00:00
"@types/mime-types": "^2.1.4",
2024-12-09 20:15:27 +00:00
"@types/moment": "^2.13.0",
2024-01-06 05:25:07 +00:00
"@types/node": "^20.10.6",
2024-12-09 20:15:27 +00:00
"@types/node-fetch": "^2.6.11",
2024-12-03 04:09:32 +00:00
"@types/s3-upload-stream": "^1.0.7",
2024-01-06 05:25:07 +00:00
"@types/sqlite3": "^3.1.11",
"@types/triple-beam": "^1.3.5",
2024-12-03 04:09:32 +00:00
"@types/uuid": "^10.0.0",
2024-01-06 05:25:07 +00:00
"@types/winston": "^2.4.4",
"typescript": "^5.3.3"
},
"dependencies": {
2024-12-03 04:09:32 +00:00
"@atproto/api": "^0.13.18",
2024-12-09 20:15:27 +00:00
"argparse": "^2.0.1",
2024-12-03 04:09:32 +00:00
"aws-sdk": "^2.1692.0",
2024-01-06 05:25:07 +00:00
"dotenv": "^16.3.1",
"handlebars": "^4.7.8",
"handlebars-helpers": "^0.10.0",
2024-12-03 04:09:32 +00:00
"image-size": "^1.1.1",
2024-01-06 05:25:07 +00:00
"lodash": "^4.17.21",
2024-12-03 04:09:32 +00:00
"mime-types": "^2.1.35",
2024-12-09 20:15:27 +00:00
"moment": "^2.30.1",
"node-fetch": "^2.7.0",
"s3-cli": "^0.13.0",
2024-12-03 04:09:32 +00:00
"s3-upload-stream": "^1.0.7",
2024-01-06 05:25:07 +00:00
"sqlite3": "^5.1.7",
"triple-beam": "^1.4.1",
"uuid": "^9.0.1",
"winston": "^3.11.0"
}
}