This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
forked from tabarra/txAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.57 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
{
"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:txadmin": "webpack --config webpack.config.js --progress",
"build:menu": "rimraf scripts/menu/nui && webpack --config ./menu/webpack/webpack.prod.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-dev-server --config ./menu/webpack/webpack.dev_game.js",
"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"
},
"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/http-wrapper": "^0.2.2",
"@discordjs/collection": "^0.1.6",
"@koa/router": "^10.0.0",
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.11.2",
"@tabarra/discord": "^11.6.6",
"adm-zip": "^0.5.5",
"axios": "^0.21.1",
"big-integer": "^1.6.48",
"boxen": "^5.0.1",
"bytes": "^3.1.0",
"chalk": "^4.1.1",
"color-support": "^1.1.3",
"dateformat": "^4.5.1",
"execa": "^5.1.1",
"fs-extra": "^9.1.0",
"got": "^11.8.2",
"humanize-duration": "^3.27.0",
"jose": "^2.0.5",
"js-yaml": "^4.1.0",
"json-colorizer": "^2.2.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-ratelimit": "^5.0.0",
"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.2.5",
"nanoid": "^3.1.23",
"nanoid-dictionary": "^4.3.0",
"node-polyglot": "^2.4.0",
"notistack": "^1.0.9",
"open": "7.1.0",
"openid-client": "^4.7.4",
"pidtree": "^0.5.0",
"pidusage-tree": "^2.0.5",
"react-polyglot": "^0.7.1",
"recoil": "^0.2.0",
"slash": "^3.0.0",
"slug": "^5.1.0",
"socket.io": "^4.1.2",
"squirrelly": "^8.0.8",
"stream-json": "^1.7.2",
"string-argv": "^0.3.1",
"systeminformation": "^5.7.7",
"windows-release": "^4.0.0",
"xss": "^1.0.9"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^15.0.0",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/slug": "^5.0.2",
"copy-webpack-plugin": "^6.2.0",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"html-webpack-plugin": "^4.5.2",
"husky": "^6.0.0",
"nodemon": "^2.0.10",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.2",
"ts-loader": "^8.0.4",
"typescript": "^4.3.5",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}