-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.15 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
{
"name": "bbrf-radio",
"version": "0.8.4",
"main": "./server/server.mjs",
"author": "vhsconnect",
"license": "GPL-2.0-only",
"private": false,
"type": "module",
"scripts": {
"dev": "RADIO_DEBUG=1 node --watch server/server.mjs & npm run hot",
"app": "node server/server.mjs",
"start": "npm run build && npm run app",
"hot": "esbuild src/Comps/App.jsx --bundle --outfile=./index.js --watch",
"build": "esbuild src/Comps/App.jsx --bundle --define:process.env.NODE_ENV=\"'production'\" --minify --outfile=./index.js",
"node2nix": "node2nix -18 -i package.json -l package-lock.json -o ./nix/node-packages.nix -e ./nix/node-env.nix -c ./nix/default.nix",
"build-nix-local": "nix build . --impure"
},
"dependencies": {
"@fastify/static": "^7.0.0",
"esbuild": "^0.18.8",
"fastify": "^4.26.0",
"got": "^12.6.1",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^7.5.4",
"uri-template": "^2.0.0",
"xdg-portable": "^10.5.1"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1"
},
"bin": "./server/server.mjs"
}