forked from saildeep/pcars2-udp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "pcars2-udp",
"version": "1.3.0",
"description": "A small library for receiving Project Cars 2 UDP data and parsing it into JS objects",
"main": "webserver.js",
"scripts": {
"start": "node webserver.js",
"test": "echo \"Error: no test specified\" && exit 1",
"listener": "node index.js",
"capture": "node capture.js",
"sampledata": "node sampledata.js"
},
"keywords": [
"games",
"project",
"cars",
"pcars",
"2",
"sms",
"telemetry"
],
"author": "Jonas Körner",
"license": "ISC",
"dependencies": {
"@types/d3": "^4.12.0",
"@types/socket.io": "^1.4.31",
"@types/socket.io-client": "^1.4.32",
"autoprefixer-loader": "^3.2.0",
"binary-parser": "^1.3.0",
"css-loader": "^0.28.7",
"d3": "^4.12.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"socket.io": "^2.0.4",
"style-loader": "^0.19.0",
"ts-loader": "^3.3.1",
"typescript": "^2.6.2",
"webpack": "^3.10.0",
"webpack-express-middleware": "^1.2.1"
}
}