-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.59 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
{
"name": "telemetry-server",
"version": "2.0.0-alpha",
"description": "UVic Formula Hybrid Telemetry Server",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:watch": "tsc -w",
"start": "node dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UVicFH/TelemetryServer.git"
},
"author": "UVic Formula Hybrid Club",
"contributors": [
{
"name": "Jayden Chan",
"email": "jaydencn7@gmail.com",
"url": "https://github.com/jayden-chan"
},
{
"name": "Chad McColm",
"email": "chadjmccolm@gmail.com",
"url": "https://github.com/chadjmccolm"
},
{
"name": "Brendon Earl",
"url": "https://github.com/bndnio"
},
{
"name": "Carly Lebeuf",
"email": "clebeuf@uvic.ca",
"url": "https://github.com/Clebeuf"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/UVicFH/TelemetryServer/issues"
},
"homepage": "https://github.com/UVicFH/TelemetryServer#readme",
"dependencies": {
"assert": "^2.0.0",
"chalk": "^2.4.2",
"express": "^4.17.1",
"lodash": "^4.17.21",
"mongodb": "^3.2.6",
"mqtt": "^3.0.0",
"socket.io": "^2.2.0",
"winston": "^3.2.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"@types/assert": "^1.4.2",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.133",
"@types/mongodb": "^3.1.27",
"@types/node": "^12.0.4",
"@types/socket.io": "^2.1.2",
"@types/yargs": "^13.0.0",
"typescript": "^3.5.1"
}
}