-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "@gamingapi/event-viewer",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
"description": "This is an example event viewer that display the in game events in real time as they happen in the Rust GamingAPI sandbox server.",
"license": "Apache-2.0",
"homepage": "https://github.com/gamingapi/event-viewer",
"bugs": {
"url": "https://github.com/gamingapi/event-viewer/issues"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git://github.com/gamingapi/event-viewer.git"
},
"keywords": [
"rust",
"playground",
"nextjs",
"gamingapi",
"sandbox",
"event-viewer"
],
"author": {
"name": "Jonas Lagoni ([email protected])"
},
"scripts": {
"dev": "cross-env NATS_AUTHENTICATION=SUABVM4NEM4N2OVJAO5V2NBMMYFLDU3WT4D7JSMSDAR5TBRWOBQPRM3CY4 next dev -p 8080",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@gamingapi/rust-ts-public-api": "^0.7.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.3",
"@next/font": "13.1.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"bufferutil": "^4.0.7",
"dotenv": "^16.0.3",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"next": "13.1.1",
"react": "18.2.0",
"react-code-blocks": "^0.0.9-0",
"react-dom": "18.2.0",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"typescript": "4.9.4",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}