-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 KB
/
package.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "lastfm-to-mqtt",
"version": "1.2.0",
"description": "Sends last playing song to mqtt",
"private": true,
"dependencies": {
"bufferutil": "^4.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"follow-redirects": "^1.11.0",
"lastfm-node-client": "^2.2.0",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"mqtt": "^4.0.0",
"ts-debounce": "^2.0.1",
"utf-8-validate": "^5.0.2",
"ws": "^7.2.5"
},
"devDependencies": {
"css-loader": "^3.5.3",
"mini-css-extract-plugin": "^0.9.0",
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.150",
"@types/ws": "^7.2.4",
"dotenv-webpack": "^1.7.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"shebang-loader": "^0.0.1",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.2",
"ts-node-dev": "^1.0.0-pre.30",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch --progress",
"start": "cd dist && node main.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.crudus.no/docker/last.fm-to-mqtt.git"
},
"author": "[email protected]",
"license": "MIT"
}