-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "gsps-trylogia",
"version": "2.0.0",
"description": "Layouts used during the 2023 GTA 3D Trilogy 100% relay.",
"homepage": "https://github.com/GramyPomagamy/gsps-trylogia#readme",
"bugs": {
"url": "https://github.com/GramyPomagamy/gsps-trylogia/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GramyPomagamy/gsps-trylogia.git"
},
"license": "GPL-v3.0",
"author": "GramyPomagamy",
"contributors": [
"hoXyy"
],
"scripts": {
"autofix": "run-s autofix:*",
"autofix:browser": "eslint --fix --ext .ts,.tsx src/browser",
"autofix:extension": "eslint --fix --ext .ts src/extension && eslint --fix --ext .d.ts src/nodecg",
"build": "run-s clean build:*",
"build:browser": "vite build",
"build:extension": "tsc -b tsconfig.extension.json",
"clean": "trash node_modules/.cache && trash shared/dist && trash dashboard && trash graphics && trash extension",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettify": "prettier --write src/browser src/extension",
"prebuild": "npm run clean",
"schema-types": "nodecg schema-types -o src/types/generated",
"start": "node ../..",
"watch": "run-p watch:*",
"watch:browser": "vite",
"watch:extension": "tsc -b tsconfig.extension.json -w --preserveWatchOutput"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.3",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.4",
"@types/needle": "^3.3.0",
"@vitejs/plugin-react": "^4.0.0",
"animate.css": "^4.1.1",
"events": "^3.3.0",
"livesplit-core": "^0.10.2",
"lodash": "^4.17.21",
"milliseconds": "^1.0.3",
"needle": "^3.3.1",
"parse-ms": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"react-transition-group": "^4.4.5",
"socket.io-client": "^4.6.2",
"styled-components": "6.0.0-rc.3",
"use-nodecg": "0.4.1-2"
},
"devDependencies": {
"@nodecg/types": "^2.1.8",
"@types/lodash": "^4.14.195",
"@types/milliseconds": "^0.0.30",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-transition-group": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"cheerio": "1.0.0-rc.12",
"del": "^7.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"get-port": "^7.0.0",
"globby": "^13.1.4",
"nodecg-cli": "^8.6.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup": "^3.29.4",
"trash-cli": "^5.0.0",
"ts-nodecg": "^0.3.1",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-checker": "^0.6.0"
},
"nodecg": {
"compatibleRange": "^1.8.1 || ^2.0.0",
"dashboardPanels": [
{
"file": "player.html",
"name": "player",
"title": "Wybór gracza",
"width": 3
},
{
"file": "countdown.html",
"name": "countdown",
"title": "Odliczanie",
"width": 3
},
{
"file": "timer.html",
"name": "timer",
"title": "Timer",
"width": 3
},
{
"file": "splits.html",
"name": "splits",
"title": "Splity",
"width": 4
}
],
"graphics": [
{
"file": "odliczanie.html",
"width": 1920,
"height": 1030
},
{
"file": "gra.html",
"width": 1920,
"height": 1030
},
{
"file": "omnibar.html",
"width": 1920,
"height": 50
}
]
}
}