-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.97 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.97 KB
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
{
"name": "generate_api",
"version": "0.8.5",
"private": true,
"description": "A multi-version PerimeterX mobile cookie generator",
"keywords": [
"API",
"anti-bot",
"cookie generator"
],
"license": "UNLICENSED",
"author": "AzureFlow",
"type": "module",
"main": "src/cli/cli.ts",
"scripts": {
"build": "tsc --build --clean && tsc --build && tsc-alias",
"cron": "node dist/api/cron.js",
"dev": "nodemon",
"drizzle:generate": "drizzle-kit generate:mysql",
"drizzle:migrate": "node --loader ts-paths-esm-loader --no-warnings src/api/database/migrate.ts",
"drizzle:push": "drizzle-kit push:mysql",
"preinstall": "npx only-allow pnpm",
"lint": "eslint src",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"start": "node dist/api/server.js"
},
"dependencies": {
"@axiomhq/pino": "^0.1.3",
"@hono/node-server": "^1.8.2",
"@hono/zod-validator": "^0.1.11",
"@t3-oss/env-core": "^0.6.1",
"chalk": "^5.3.0",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.28.6",
"ffi-napi": "^4.0.3",
"hono": "^3.12.12",
"long": "^5.2.3",
"mysql2": "^3.9.2",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"semver": "^7.6.0",
"typeid-js": "^0.2.1",
"zod": "^3.22.4",
"zod-validation-error": "^1.5.0"
},
"devDependencies": {
"@swc/core": "^1.4.8",
"@types/debug": "^4.1.12",
"@types/diff": "^5.0.9",
"@types/ffi-napi": "^4.0.10",
"@types/node": "^20.11.28",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"diff": "^5.2.0",
"drizzle-kit": "^0.19.13",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.0",
"p-queue": "^7.4.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"ts-paths-esm-loader": "^1.4.3",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.2"
},
"packageManager": "^pnpm@8.6.7",
"engines": {
"node": ">=18.0"
}
}