aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2023-08-20 15:33:43 +0100
committerLeonardo Bishop <me@leonardobishop.com>2023-08-20 15:37:20 +0100
commitb56101f1a11552067f594679a497ebd4cf7427d4 (patch)
tree666014eb2199d3f230435a60ac4e0d1ed098fe62 /package.json
Initial commit
Diffstat (limited to 'package.json')
-rw-r--r--package.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..02d3b09
--- /dev/null
+++ b/package.json
@@ -0,0 +1,32 @@
+{
+ "name": "scrapbook",
+ "version": "1.0",
+ "description": "",
+ "main": "app/index.mjs",
+ "scripts": {
+ "start": "tsc && node build/index.js",
+ "lint": "eslint app --ext .ts"
+ },
+ "author": "Leonardo Bishop",
+ "dependencies": {
+ "adm-zip": "^0.5.10",
+ "bcrypt": "^5.1.1",
+ "config": "^3.3.9",
+ "express": "^4.17.1",
+ "fs-extra": "^11.1.1",
+ "js-yaml": "^4.1.0",
+ "multer": "^1.4.5-lts.1",
+ "winston": "^3.3.3"
+ },
+ "type": "module",
+ "devDependencies": {
+ "@typescript-eslint/eslint-plugin": "^5.7.0",
+ "@typescript-eslint/parser": "^5.7.0",
+ "@types/adm-zip": "^0.5.0",
+ "@types/config": "^3.3.0",
+ "@types/express": "^4.17.13",
+ "@types/fs-extra": "^11.0.1",
+ "@types/multer": "^1.4.7",
+ "eslint": "^8.5.0"
+ }
+}