-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
77 lines (77 loc) · 2.71 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
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
72
73
74
75
76
77
{
"name": "@signalk/instrumentpanel",
"version": "0.26.0",
"description": "Signal K instrument panel implemented as an HTML5 grid with draggable & resizable widgets",
"keywords": [
"signalk-webapp",
"signalk-category-instruments",
"signal k",
"signalk",
"instruments",
"dashboard",
"marine",
"nmea"
],
"homepage": "https://github.com/SignalK/instrumentpanel",
"bugs": "https://github.com/SignalK/instrumentpanel/issues",
"license": "Apache-2.0",
"author": "Teppo Kurki <[email protected]>",
"contributors": [
"Tim Mathews <[email protected]>",
"Christian Motelet <[email protected]>"
],
"main": "lib/ui/main.js",
"repository": "github:SignalK/instrumentpanel.git",
"scripts": {
"start": "webpack-dev-server --mode development",
"prepublishOnly": "npm run build-changelog; npm run build-help; npm run build",
"build": "webpack --progress",
"build-help": "marked -i ./lib/help/help.md -o ./public/help/help.html; cat ./public/CHANGELOG.html >> ./public/help/help.html",
"build-changelog": "auto-changelog -p --template changelog-template.hbs --stdout | fgrep -v 'dependabot[bot]' | marked -o ./public/CHANGELOG.html",
"watch": "webpack -d --watch",
"create-release": "github-create-release --owner signalk --repository instrumentpanel",
"release": "git tag -d v$npm_package_version && git tag v$npm_package_version && git push --tags && git push && npm run create-release"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-flow-comments": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@babel/preset-flow": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/register": "^7.24.6",
"@signalk/github-create-release": "^1.2.0",
"auto-changelog": "^2.4.0",
"babel-loader": "^9.1.3",
"bacon.model": "^0.1.12",
"baconjs": "^3.0.19",
"bluebird": "^3.7.2",
"compare-versions": "^6.1.1",
"core-js": "^3.38.1",
"css-prefers-color-scheme": "^5.0.0",
"d3-scale": "^4.0.2",
"d3-shape": "^3.2.0",
"debug": "^4.3.6",
"eventemitter3": "^5.0.1",
"file-saver": "^2.0.5",
"js-quantities": "^1.8.0",
"json-beautify": "^1.1.1",
"json-loader": "^0.5.7",
"marked": "^14.1.0",
"on-swipe": "^1.0.9",
"prop-types": "^15.8.1",
"react": "^16.12.0",
"react-bootstrap": "^0.33.1",
"react-dom": "^16.12.0",
"react-grid-layout": "1.3.4",
"react-hot-loader": "^4.13.1",
"util": "^0.12.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"signalk": {
"appIcon": "./icons/instrumentpanel-72x72.png",
"displayName": "Instrumentpanel"
}
}