forked from tabarra/txAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.75 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
{
"name": "txadmin",
"version": "1.0.0",
"description": "FiveM FXServer Admin - remotely manage your GTA5 FiveM Server",
"module": "./core/index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && rimraf tmp_core_tsc && npm run build:menu && npm run build:main",
"build:menu": "vite build nui/ --mode production",
"build:main": "node scripts/main-builder.js publish",
"prepare": "husky install",
"dev:menu:browser": "vite dev nui/ --mode devNuiBrowser",
"dev:menu:game": "vite build nui/ --watch --mode development",
"dev:main": "node scripts/main-builder.js dev",
"typecheck": "npm run typecheck:menu && npm run typecheck:main",
"typecheck:menu": "tsc -p nui/tsconfig.json --noEmit",
"typecheck:core": "tsc -p core/tsconfig.json --noEmit",
"typecheck:shared": "tsc -p shared/tsconfig.json --noEmit",
"locale:rebase": "node scripts/locale-utils.js rebase",
"locale:diff": "node scripts/locale-utils.js diff",
"lint": "eslint ./core/**",
"lint:count": "eslint ./core/** -f ./scripts/lint-formatter.js",
"lint:fix": "eslint ./core/** --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tabarra/txAdmin.git"
},
"keywords": [
"fxserver",
"fivem",
"gta5",
"gtav",
"server-manager",
"player-list"
],
"author": "André Tabarra",
"license": "MIT",
"bugs": {
"url": "https://github.com/tabarra/txAdmin/issues"
},
"homepage": "https://github.com/tabarra/txAdmin#readme",
"dependencies": {
"@citizenfx/discord.js": "^13.6.1",
"@citizenfx/http-wrapper": "^0.2.2",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@koa/cors": "^3.4.1",
"@koa/router": "^12.0.0",
"@mui/icons-material": "^5.10.3",
"@mui/material": "^5.10.4",
"@types/dateformat": "^5.0.0",
"@types/humanize-duration": "^3.27.1",
"@types/koa": "^2.13.5",
"@types/lodash-es": "^4.17.6",
"@types/node-polyglot": "^2.4.2",
"boxen": "^7.0.0",
"bytes": "^3.1.2",
"chalk": "^4.1.2",
"dateformat": "^5.0.3",
"ejs": "^3.1.8",
"esbuild": "^0.15.7",
"execa": "^5.1.1",
"fs-extra": "^9.1.0",
"fuse.js": "^6.6.2",
"got": "^11.8.2",
"humanize-duration": "^3.27.3",
"is-localhost-ip": "^2.0.0",
"js-yaml": "^4.1.0",
"json-colorizer": "^2.2.2",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-ratelimit": "^5.0.1",
"koa-session": "^6.2.0",
"koa-session-memory": "^1.0.4",
"koa-session-socketio": "^1.0.0",
"koa-static": "^5.0.0",
"lodash-es": "^4.17.21",
"lowdb": "^5.0.5",
"mysql2": "^2.3.3",
"nanoid": "^4.0.0",
"nanoid-dictionary": "^4.3.0",
"node-polyglot": "^2.4.2",
"node-stream-zip": "^1.15.0",
"notistack": "^2.0.5",
"open": "7.1.0",
"openid-client": "^5.3.0",
"pidtree": "^0.6.0",
"pidusage": "github:tabarra/pidusage",
"react-polyglot": "^0.7.2",
"recoil": "^0.7.5",
"rotating-file-stream": "^3.0.4",
"semver": "^7.3.7",
"slash": "^4.0.0",
"slug": "^8.0.0",
"socket.io": "^4.5.2",
"stream-json": "^1.7.4",
"string-argv": "^0.3.1",
"systeminformation": "^5.12.6",
"vite-tsconfig-paths": "^3.5.1",
"windows-release": "^4.0.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.7.16",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/slug": "^5.0.3",
"@vitejs/plugin-react": "^2.1.0",
"chokidar": "^3.5.3",
"eslint": "^8.23.0",
"husky": "^8.0.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.3",
"vite": "^3.1.0"
}
}