aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2023-08-06 12:47:15 +0100
committerLeonardo Bishop <me@leonardobishop.com>2023-08-06 12:57:19 +0100
commit5091b1bf0501d08bb5af90eb75a0833d7d9aba3e (patch)
tree844dd4740092b38a0168e56944d33a9e3301d32d /package.json
Initial commit
Diffstat (limited to 'package.json')
-rw-r--r--package.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..c5e13a6
--- /dev/null
+++ b/package.json
@@ -0,0 +1,28 @@
+{
+ "name": "wailt",
+ "version": "1.0.0",
+ "description": "What am I listening to?",
+ "main": "app/index.mjs",
+ "scripts": {
+ "start": "tsc && node build/index.js",
+ "lint": "eslint app --ext .ts"
+ },
+ "author": "Leonardo Bishop",
+ "license": "ISC",
+ "dependencies": {
+ "axios": "^1.4.0",
+ "dotenv-defaults": "^5.0.2",
+ "express": "^4.18.2",
+ "redis": "^4.6.7",
+ "winston": "^3.10.0",
+ "ws": "^8.13.0"
+ },
+ "type": "module",
+ "devDependencies": {
+ "@types/express": "^4.17.13",
+ "@types/ws": "^8.5.4",
+ "@typescript-eslint/eslint-plugin": "^5.7.0",
+ "@typescript-eslint/parser": "^5.7.0",
+ "eslint": "^8.5.0"
+ }
+}