SpeedyF/package.json

34 lines
829 B
JSON
Raw Normal View History

2024-05-01 01:14:51 +01:00
{
"name": "speedyf",
"version": "0.0.1",
"description": "Compress PDF files on the web",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2024-05-01 13:39:29 +01:00
"dev": "npx tsc && cp -r static/ build && node build/index.js",
2024-05-01 14:20:44 +01:00
"build": "npx tsc && cp -r static/ views/ sh/ build"
2024-05-01 01:14:51 +01:00
},
"repository": {
"type": "git",
"url": "git.fjla.uk/fred.boniface/SpeedyF"
},
"keywords": [
"pdf"
],
"author": "Frederick Boniface",
"license": "AGPL-3.0-or-later",
"dependencies": {
"ejs": "^3.1.10",
2024-05-01 13:39:29 +01:00
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"uuid": "^9.0.1"
2024-05-01 01:14:51 +01:00
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
2024-05-01 13:39:29 +01:00
"@types/express-fileupload": "^1.5.0",
"@types/uuid": "^9.0.8",
2024-05-01 01:14:51 +01:00
"typescript": "^5.4.5"
}
}