forked from laberning/openrowingmonitor
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "OpenRowingMonitor",
"version": "0.9.7",
"description": "A free and open source performance monitor for rowing machines",
"main": "app/server.js",
"author": "Jaap van Ekris",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/JaapvanEkris/openrowingmonitor.git"
},
"type": "module",
"engines": {
"node": ">=20"
},
"files": [
"*",
"!/**/*.test.js"
],
"scripts": {
"lint": "eslint ./app ./config && markdownlint-cli2 '**/*.md' '#node_modules'",
"start": "node app/server.js",
"build": "rollup -c",
"build:watch": "rollup -cw",
"test": "uvu"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npm test"
},
"dependencies": {
"@markw65/fit-file-writer": "^0.1.9",
"ble-host": "github:Abasz/node-ble-host",
"chart.js": "^4.5.1",
"chartjs-plugin-datalabels": "^2.2.0",
"finalhandler": "^2.1.1",
"incyclist-ant-plus": "^0.3.6",
"lit": "^3.2.0",
"loglevel": "^1.9.1",
"mqtt": "^5.15.1",
"node-fetch": "^3.3.2",
"nosleep.js": "0.12.0",
"pigpio": "3.3.1",
"replace-in-file": "^8.4.0",
"serve-static": "^2.2.1",
"ws": "^8.20.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/preset-env": "^7.29.2",
"@eslint/js": "^9.39.4",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@web/rollup-plugin-html": "^3.0.0",
"eslint": "^9.39.4",
"globals": "^17.0.0",
"http2-proxy": "5.0.53",
"markdownlint-cli2": "^0.22.0",
"nodemon": "^3.1.11",
"npm-run-all": "4.1.5",
"rollup": "^4.60.1",
"rollup-plugin-summary": "^3.0.0",
"simple-git-hooks": "^2.13.1",
"tar": "^7.5.13",
"uvu": "^0.5.6"
}
}