-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.55 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
{
"name": "@jusbrasil/mono-proxy",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "commonjs",
"engines": {
"node": ">=20"
},
"scripts": {
"beautify": "yarn prettier --write \"./(apps|packages)/**/src/**/*\"",
"start": "nx serve proxy",
"prebuild": "rm -rf dist",
"build:proxy:dev": "npx nx build proxy",
"build": "yarn nx run-many --target=build --all",
"postbuild": "yarn nx run-many --target=docs --all",
"test": "yarn nx test",
"raw": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 node --trace-warnings --watch --loader=ts-node/esm",
"clear": "rm -rf tmp dist node_modules *.log *.lock *-lock*",
"docker:up": "docker compose up --build --force-recreate --remove-orphans --renew-anon-volumes -V",
"docker:down": "docker compose down -v --remove-orphans",
"docs": "yarn nx run-many --target=docs --all",
"husky:init": "yarn husky init",
"lint": "yarn nx workspace-lint && yarn nx lint",
"affected:apps": "yarn nx affected:apps",
"affected:libs": "yarn nx affected:libs",
"affected:build": "yarn nx affected:build",
"affected:test": "yarn nx affected:test",
"affected:lint": "yarn nx affected:lint",
"affected:dep-graph": "yarn nx affected:dep-graph",
"affected": "yarn nx affected",
"bump": "yarn nx migrate latest && npx ncu -u && yarn",
"workspace-generator": "yarn nx workspace-generator",
"dep-graph": "yarn nx dep-graph",
"help": "yarn nx help",
"connect": "yarn nx connect-to-nx-cloud",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"yarn prettier --write"
]
},
"dependencies": {
"axios": "1.7.2",
"axios-rate-limit": "1.3.1",
"axios-retry": "4.3.0",
"babel-register-esm": "1.2.5",
"cheerio": "1.0.0-rc.12",
"express": "4.19.2",
"express-zod-api": "18.5.2",
"http-errors": "2.0.0",
"pino": "9.0.0",
"proxy-chain": "2.4.1",
"puppeteer": "22.11.1",
"puppeteer-extra": "3.3.6",
"puppeteer-extra-plugin-stealth": "2.11.2",
"redis": "4.6.15",
"reflect-metadata": "0.2.2",
"tunnel": "0.0.6",
"winston": "3.13.0",
"zod": "3.23.8"
},
"devDependencies": {
"@babel/core": "7.24.6",
"@babel/preset-env": "7.24.6",
"@babel/preset-react": "7.24.6",
"@babel/preset-typescript": "7.24.6",
"@nrwl/devkit": "19.0.8",
"@nx/devkit": "19.0.8",
"@nx/express": "19.0.8",
"@nx/js": "19.0.8",
"@nx/node": "19.0.8",
"@nx/webpack": "19.0.8",
"@nx/workspace": "19.0.8",
"@swc/core": "1.5.7",
"@types/node": "20.12.12",
"@types/supertest": "6.0.2",
"@types/tunnel": "0.0.7",
"@types/uuid": "9.0.8",
"babel-loader": "9.1.3",
"babel-plugin-dynamic-import-node": "2.3.3",
"commander": "12.1.0",
"dotenv": "16.4.5",
"glob": "10.4.1",
"husky": "9.0.11",
"lint-staged": "15.2.4",
"npm-check-updates": "16.14.20",
"nx": "19.0.8",
"pino-pretty": "11.0.0",
"prettier": "3.2.5",
"require-from-string": "2.0.2",
"source-map-support": "0.5.21",
"style-loader": "4.0.0",
"stylelint": "16.6.0",
"stylelint-config-recommended": "14.0.0",
"stylus": "0.63.0",
"stylus-loader": "8.1.0",
"supertest": "7.0.0",
"terser-webpack-plugin": "5.3.10",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"ts-node-register": "1.0.0",
"ts-toolbelt": "9.6.0",
"tsconfig-paths": "4.2.0",
"tslib": "2.6.2",
"typedi": "0.10.0",
"typedoc": "0.25.13",
"typescript": "5.4.5",
"url-loader": "4.1.1",
"webpack": "5.91.0",
"webpack-merge": "5.10.0"
}
}