-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 2.07 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
{
"name": "@mfdlabs/rbx-proxy",
"version": "1.2.4-dev.726a0c6.2",
"description": "A website for proxying host based requests and transforming Roblox Test Site Hostnames to Production Hostnames",
"main": "dist/index.js",
"scripts": {
"main": "node --no-deprecation dist/index.js",
"build-run": "node path.js && npm run compile && npm run main",
"run-all": "npm update && npm i && node path.js && npm run build && npm run main",
"start": "npm run main",
"build": "npm run clean && npm run compile",
"build-full": "node path.js && npm ci && npm update && npm run build",
"clean": "tsc -b --clean tsconfig.json",
"compile": "tsc -b -v --listEmittedFiles tsconfig.json",
"lint": "eslint -c .eslintrc --fix",
"lint-ci": "eslint -c .eslintrc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"up": "docker-compose up",
"down": "docker-compose down"
},
"author": "MFDLABS",
"license": "Apache-2.0",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/escape-html": "^1.0.4",
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.19",
"@types/source-map-support": "^0.5.10",
"@types/spdy": "^3.4.9",
"@types/stack-trace": "^0.0.33",
"eslint-config-prettier": "^9.1.0",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.14.0",
"prettier": "^3.2.5",
"eslint-plugin-jsdoc": "^48.1.0",
"source-map-support": "^0.5.21",
"typescript": "^5.3.3"
},
"dependencies": {
"@mfdlabs/environment": "^1.0.3",
"@mfdlabs/logging": "^1.0.5",
"@mfdlabs/net": "^1.1.0",
"@sentry/tracing": "^7.102.0",
"@sentry/node": "^7.102.0",
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"escape-html": "^1.0.3",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"mathjs": "^12.3.2",
"node-cache": "^5.1.2",
"prom-client": "^15.1.0",
"source-code-error": "^1.1.1",
"spdy": "^4.0.2",
"stack-trace": "^0.0.10"
},
"files": [
"dist"
]
}