forked from tabarra/txAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.63 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
{
"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",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@koa/router": "^10.1.1",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.0.2",
"@mui/styles": "^5.0.1",
"@tabarra/discord": "^11.6.6",
"adm-zip": "^0.5.6",
"axios": "^0.21.4",
"boxen": "^5.1.2",
"bytes": "^3.1.0",
"chalk": "^4.1.2",
"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.3",
"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.0",
"nanoid": "^3.1.28",
"nanoid-dictionary": "^4.3.0",
"node-polyglot": "^2.4.2",
"notistack": "^2.0.2",
"open": "7.1.0",
"openid-client": "^4.9.0",
"pidtree": "^0.5.0",
"pidusage-tree": "^2.0.5",
"react-polyglot": "^0.7.2",
"recoil": "^0.4.1",
"rotating-file-stream": "^2.1.6",
"slash": "^3.0.0",
"slug": "^5.1.0",
"socket.io": "^4.2.0",
"squirrelly": "^8.0.8",
"stream-json": "^1.7.3",
"string-argv": "^0.3.1",
"systeminformation": "^5.9.4",
"windows-release": "^4.0.0",
"xss": "^1.0.9"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@types/node": "^16.10.2",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"@types/slug": "^5.0.2",
"copy-webpack-plugin": "^6.2.0",
"css-loader": "^5.2.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"html-webpack-plugin": "^4.5.2",
"husky": "^7.0.2",
"nodemon": "^2.0.13",
"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.4.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}