forked from JaapvanEkris/openrowingmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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
71
{
"name": "OpenRowingMonitor",
"version": "0.9.6",
"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"
},
"//fix1Comment": "We install lit@2.8.0 as lit@3.0.0 breaks the webpage displaying metrics",
"dependencies": {
"@markw65/fit-file-writer": "^0.1.6",
"ble-host": "^1.0.3",
"chart.js": "^4.5.0",
"chartjs-plugin-datalabels": "^2.2.0",
"finalhandler": "^2.1.0",
"incyclist-ant-plus": "^0.3.5",
"lit": "^2.8.0",
"loglevel": "^1.9.1",
"mqtt": "^5.13.1",
"node-fetch": "^3.3.2",
"nosleep.js": "0.12.0",
"pigpio": "3.3.1",
"replace-in-file": "^8.3.0",
"serve-static": "^2.2.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.27.5",
"@babel/plugin-proposal-decorators": "^7.23.9",
"@babel/preset-env": "^7.27.2",
"@eslint/js": "^9.30.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^5.1.0",
"@web/rollup-plugin-html": "^2.1.2",
"eslint": "^9.30.0",
"globals": "^16.2.0",
"http2-proxy": "5.0.53",
"markdownlint-cli2": "^0.18.1",
"nodemon": "^3.0.3",
"npm-run-all": "4.1.5",
"rollup": "^4.44.1",
"rollup-plugin-summary": "^3.0.0",
"simple-git-hooks": "^2.9.0",
"tar": "^7.4.3",
"uvu": "^0.5.6"
}
}