-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.2 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
{
"name": "f1-2021-telemetry-app",
"version": "1.0.1",
"description": "F1 2021 to show data of telemetry and show info in a Stencil app. This repo is forked of 'f1-2021-udp'",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mrcodedev/f1-2021-telemetry-app.git"
},
"scripts": {
"start:ws": "npm run build:server && node ./build/src/server/websocket/index.js",
"start:client": "npm run build:server && nodemon --config nodemon.json ./build/src/server/playground/index.js",
"start:app": "cd src/app/ && stencil build --dev --watch --serve",
"start:all": "npm run start:ws & npm run start:client & npm run start:app",
"build:server": "tsc",
"build:server-watch": "tsc --watch",
"build:app": "cd src/app/ && stencil build",
"build:link": "npm run build && npm link",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit"
},
"dependencies": {
"binary-parser": "1.9.2",
"dgram": "^1.0.1",
"http": "^0.0.1-security",
"nodemon": "^2.0.12",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"struct": "^0.0.12",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/binary-parser": "1.5.1",
"@types/express": "^4.17.13",
"@types/node": "^14.17.5",
"@types/ws": "^7.4.7",
"eslint": "7.31.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.17.1",
"lint-staged": "11.0.1",
"prettier": "^2.3.2",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint"
}
},
"lint-staged": {
"*.ts": [
"gts fix",
"git add"
]
},
"keywords": [
"F1",
"Formula 1",
"F1 2021",
"Codemasters",
"udp telemetry",
"telemetry",
"simracing",
"codemasters",
"gaming",
"esports",
"e-sports",
"e sports",
"wheels",
"videogame",
"ps4",
"playstation 4",
"ps5",
"playstation 5",
"xbox",
"fanatec",
"logitech"
],
"author": "MrCodeDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrcodedev/f1-2021-telemetry-app/issues"
},
"homepage": "https://github.com/mrcodedev/f1-2021-telemetry-app#readme",
"engines": {
"node": ">=10"
}
}