-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.72 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
76
77
78
79
80
81
82
83
84
{
"name": "smartoption",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:full": "node scripts/run-platform.js start-dev",
"docker:up": "docker compose -f docker-compose.dev.yml up -d",
"docker:down": "docker compose -f docker-compose.dev.yml down",
"tunnel": "node scripts/run-platform.js start-tunnel",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/infrastructure/database/scripts/seed.ts",
"db:backfill-wallets": "tsx src/infrastructure/database/scripts/backfill-wallets.ts",
"plans:seed": "tsx src/infrastructure/database/scripts/plans-seed.ts",
"demo:seed": "tsx src/infrastructure/database/scripts/demo-seed.ts",
"demo:reset": "tsx src/infrastructure/database/scripts/demo-reset.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"ascii-table3": "^0.9.0",
"axios": "^1.18.1",
"bcryptjs": "^3.0.3",
"bullmq": "^5.80.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.45.2",
"express": "^4.22.2",
"express-rate-limit": "^8.5.2",
"helmet": "^7.1.0",
"ioredis": "^5.11.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"mysql2": "^3.6.3",
"node-cron": "^3.0.3",
"node-telegram-bot-api": "^0.64.0",
"nodemailer": "^6.9.7",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"rate-limit-redis": "^5.0.0",
"swagger-ui-express": "^5.0.1",
"uuid": "^14.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.16",
"@types/crypto-js": "^4.2.1",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^24.13.3",
"@types/node-cron": "^3.0.11",
"@types/node-telegram-bot-api": "^0.63.1",
"@types/nodemailer": "^6.4.14",
"@types/swagger-ui-express": "^4.1.8",
"@eslint/js": "^10.0.1",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^4.1.10",
"drizzle-kit": "^0.31.10",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"pino-pretty": "^13.1.3",
"prettier": "^3.9.5",
"supertest": "^7.2.2",
"tsx": "^4.23.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
}
}