1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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"
}
}
|