-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
178 lines (178 loc) · 4.94 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "signalk-server",
"version": "1.43.0",
"description": "An implementation of a [Signal K](http://signalk.org) server for boats.",
"main": "index.js",
"scripts": {
"build": "tsc",
"build:all": "npm run build:workspaces && npm run build",
"build:workspaces": "npm run build --workspaces --if-present",
"build-declaration": "tsc --declaration --allowJs false",
"watch": "npm run build -- -w",
"lint": "tslint --config tslint.js --project tsconfig.json --fix",
"ci-lint": "tslint --config tslint.js --project tsconfig.json",
"prepublishOnly": "npm run lint && npm run build:all && npm run build-declaration",
"update-latest-release": "git checkout master && git branch -D latest-release || git checkout -b latest-release && git push -f origin/latest-release",
"start": "node bin/signalk-server",
"test-only": "mocha --require ts-node/register --extensions ts,tsx,js --timeout 10000 --exit 'test/**/*.[jt]s' 'lib/**/*.test.js'",
"test": "npm run build && npm run test-only && npm run ci-lint",
"typedoc": "typedoc",
"heroku-postbuild": "npm run build:all"
},
"bin": {
"signalk-server": "./bin/signalk-server",
"signalk-server-setup": "./bin/signalk-server-setup",
"signalk-generate-token": "./bin/signalk-generate-token"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/signalk-server.git"
},
"bugs": {
"url": "https://github.com/SignalK/signalk-server/issues"
},
"keywords": [
"signalk",
"kjson",
"nmea",
"seatalk",
"gps",
"sailing",
"boat",
"marine",
"nautic"
],
"author": "Teppo Kurki <[email protected]>",
"contributors": [
{
"name": "Fabian Tollenaar",
"email": "[email protected]"
},
{
"name": "Scott Bender",
"email": "[email protected]"
},
{
"name": "Joachim Bakke"
},
{
"name": "Tim Mathews",
"email": "[email protected]"
},
{
"name": "Pavel Kalian"
}
],
"license": "Apache-2.0",
"engines": {
"node": ">=10"
},
"workspaces": [
"packages/server-admin-ui-dependencies",
"packages/server-admin-ui",
"packages/streams",
"packages/server-api"
],
"dependencies": {
"@signalk/n2k-signalk": "^2.0.0",
"@signalk/nmea0183-signalk": "^3.0.0",
"@signalk/server-admin-ui": "1.40.x",
"@signalk/server-api": "1.39.x",
"@signalk/signalk-schema": "1.5.1",
"@signalk/streams": "2.x",
"@types/debug": "^4.1.5",
"baconjs": "^1.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.14.1",
"busboy": "^0.3.1",
"chalk": "^3.0.0",
"clear": "^0.1.0",
"command-exists": "^1.2.8",
"compare-versions": "^3.0.1",
"compression": "^1.7.3",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.3",
"cors": "^2.5.2",
"debug": "^4.3.3",
"deep-get-set": "^1.1.0",
"dev-null-stream": "0.0.1",
"dnssd2": "1.0.0",
"errorhandler": "^1.3.0",
"express": "^4.10.4",
"express-easy-zip": "^1.1.5",
"express-namespace": "^0.1.1",
"figlet": "^1.2.0",
"file-timestamp-stream": "^2.1.2",
"flatmap": "0.0.3",
"geolib": "3.2.2",
"get-installed-path": "^4.0.8",
"inquirer": "^7.0.0",
"json-patch": "^0.7.0",
"jsonwebtoken": "^8.1.1",
"listr": "^0.14.1",
"lodash": "^4.17.4",
"mdns-js": "^1.0.3",
"minimist": "^1.1.0",
"moment": "^2.10.6",
"morgan": "^1.5.0",
"ms": "^2.1.2",
"ncp": "^2.0.0",
"node-fetch": "^2.6.0",
"pem": "^1.14.3",
"primus": "^7.0.0",
"semver": "^7.1.1",
"split": "^1.0.0",
"stat-mode": "^1.0.0",
"unzipper": "^0.10.10",
"uuid": "^8.1.0",
"ws": "^7.0.0"
},
"optionalDependencies": {
"@signalk/freeboard-sk": "^1.0.0",
"@signalk/instrumentpanel": "0.x",
"@signalk/set-system-time": "^1.2.0",
"@signalk/signalk-to-nmea0183": "^1.0.0",
"@signalk/vesselpositions": "^1.0.0",
"@signalk/zones": "^1.0.0",
"mdns": "^2.5.1",
"serialport": "^9.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/express": "^4.17.1",
"@types/lodash": "^4.14.139",
"@types/mocha": "^8.2.0",
"@types/node-fetch": "^2.5.3",
"@types/pem": "^1.9.6",
"@types/semver": "^7.1.0",
"@types/serialport": "^8.0.1",
"@types/split": "^1.0.0",
"@types/uuid": "^8.3.1",
"chai": "^4.0.0",
"chai-json-equal": "0.0.1",
"chai-things": "^0.2.0",
"freeport-promise": "^1.0.0",
"lint-staged": "^10.0.3",
"mocha": "^7.0.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.2",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.17.3",
"typescript": "^3.6.3"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"tslint --project tsconfig.json -c tslint.commit.json --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"funding": "https://opencollective.com/signalk"
}