forked from tabarra/txAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.61 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
{
"name": "txadmin",
"version": "0.0.0-check-fxmanifest.lua",
"description": "FiveM FXServer Admin - remotely manage your GTA5 FiveM Server",
"main": "src/index.js",
"scripts": {
"prepare": "husky install",
"build": "rimraf dist && npm run build:menu && npm run build:txadmin",
"build:menu": "rimraf scripts/menu/nui && webpack --config ./menu/webpack/webpack.prod.js --progress",
"build:txadmin": "webpack --config webpack.config.js --progress",
"dev:menu:browser": "rimraf scripts/menu/nui && webpack-dev-server --config ./menu/webpack/webpack.dev_browser.js",
"dev:menu:game": "rimraf scripts/menu/nui && webpack --config ./menu/webpack/webpack.dev_game.js --watch --progress",
"watch": "nodemon --config nodemon.json",
"lint": "eslint ./src/**",
"lint:count": "eslint ./src/** -f ./lint-formatter.js",
"lint:fix": "eslint ./src/** --fix",
"locale:rebase": "node locale/_utils.js rebase",
"locale:diff": "node locale/_utils.js diff",
"test": "bash test_build.sh"
},
"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",
"@koa/router": "^10.1.1",
"@mui/icons-material": "^5.6.1",
"@mui/material": "^5.6.1",
"@mui/styles": "^5.6.1",
"axios": "^0.26.1",
"boxen": "^5.1.2",
"bytes": "^3.1.2",
"chalk": "^4.1.2",
"color-support": "^1.1.3",
"dateformat": "^4.5.1",
"ejs": "^3.1.6",
"execa": "^5.1.1",
"fs-extra": "^9.1.0",
"got": "^11.8.2",
"humanize-duration": "^3.27.1",
"jose": "^2.0.5",
"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": "^4.17.21",
"lowdb": "^1.0.0",
"mysql2": "^2.3.3",
"nanoid": "^3.3.2",
"nanoid-dictionary": "^4.3.0",
"node-polyglot": "^2.4.2",
"node-stream-zip": "^1.15.0",
"notistack": "^2.0.4",
"open": "7.1.0",
"openid-client": "^5.1.4",
"pidtree": "^0.5.0",
"pidusage-tree": "^2.0.5",
"react-polyglot": "^0.7.2",
"recoil": "^0.6.1",
"rotating-file-stream": "^3.0.3",
"slash": "^3.0.0",
"slug": "^5.3.0",
"socket.io": "^4.4.1",
"stream-json": "^1.7.4",
"string-argv": "^0.3.1",
"systeminformation": "^5.11.9",
"windows-release": "^4.0.0",
"xss": "^1.0.11"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/slug": "^5.0.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}