-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "@signalk/calibration",
"version": "1.3.3",
"description": "Signal K Node Server plugin to alter incoming data based a set of calibration values",
"repository": "github:SignalK/calibration",
"main": "index.js",
"keywords": [
"signalk-node-server-plugin",
"signalk-plugin-configurator"
],
"author": "Teppo Kurki <[email protected]>",
"scripts": {
"format": "prettier-standard 'index.js'",
"test": "mocha",
"prepublishOnly": "npm run clean && npm run build",
"dev": "webpack --watch --mode development",
"build": "webpack --mode=production",
"clean": "rimraf ./public",
"bundle-analyzer": "webpack-bundle-analyzer --port 4200 public/stats.json"
},
"contributors": [],
"license": "Apache-2.0",
"dependencies": {
"linear-interpolator": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-react": "^7.10.4",
"@fortawesome/fontawesome-free": "^5.15.1",
"@signalk/server-admin-ui-dependencies": "^1.0.0",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.3",
"chai": "^4.2.0",
"css-loader": "^5.0.0",
"d3": "^6.2.0",
"file-loader": "^6.1.1",
"font-awesome": "^4.7.0",
"mocha": "^8.0.1",
"prettier-standard": "^6.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "^4.3.1",
"react-redux": "^5.1.2",
"react-select": "^3.1.0",
"reactstrap": "^5.0.0",
"recharts": "^1.8.5",
"redux": "^3.7.2",
"redux-thunk": "2.3.0",
"simple-line-icons": "^2.5.5",
"style-loader": "^2.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
}
}