-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "lb_radio",
"version": "0.0.0",
"description": "Utility to submit listens to ListenBrainz done with a dumb radio receiver",
"main": "server/index.js",
"private": true,
"type": "module",
"scripts": {
"start": "webpack serve --mode=development --node-env=production",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "node server/index.js --port 8080"
},
"keywords": [
"listenbrainz",
"radio"
],
"author": "MaxEtMoritz",
"license": "MIT",
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.10.5",
"express": "^4.18.2",
"icecast-metadata-js": "^1.2.8",
"radio-browser-api": "^6.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.22.7",
"@types/express": "^4.17.21",
"babel-loader": "^9.1.3",
"css-loader": "6.8.1",
"html-bundler-webpack-plugin": "^2.15.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}