-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 821 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 821 Bytes
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
{
"name": "engineering-data-distributor",
"version": "1.2.0",
"description": "Server to distribute incoming packets from Solar Car 1 to engineering dashboard instances.",
"main": "src/server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/badgerloop-software/engineering-data-distributor.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel ./src/ -d dist",
"start": "./run-server.sh",
"live": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.3",
"luxon": "^2.3.0",
"socket.io": "^2.2.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11"
}
}