52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "openrowingmonitor",
|
|
"version": "0.7.0",
|
|
"description": "A rowing monitor for rowing exercise machines",
|
|
"main": "app/server.js",
|
|
"author": "Lars Berning",
|
|
"license": "GPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/laberning/openrowingmonitor.git"
|
|
},
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"lint": "eslint ./app && markdownlint '**/*.md' --ignore node_modules",
|
|
"start": "node app/server.js",
|
|
"dev": "npm-run-all --parallel start build:watch",
|
|
"build": "snowpack build",
|
|
"build:watch": "snowpack build --watch",
|
|
"test": "ava"
|
|
},
|
|
"ava": {
|
|
"verbose": true
|
|
},
|
|
"dependencies": {
|
|
"@abandonware/bleno": "^0.5.1-3",
|
|
"finalhandler": "^1.1.2",
|
|
"http": "0.0.1-security",
|
|
"loglevel": "^1.7.1",
|
|
"nosleep.js": "^0.12.0",
|
|
"onoff": "^6.0.1",
|
|
"serve-static": "^1.14.1",
|
|
"ws": "^7.4.4"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^3.15.0",
|
|
"eslint": "^7.22.0",
|
|
"eslint-config-standard": "^16.0.2",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^4.3.1",
|
|
"http-proxy": "^1.18.1",
|
|
"husky": "^5.1.3",
|
|
"markdownlint-cli": "^0.27.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"snowpack": "^3.1.2"
|
|
}
|
|
}
|