-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "telegram-bot-template",
"version": "0.1.2",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome ci .",
"format": "biome format --write .",
"check": "biome check --write .",
"typecheck": "tsc --noEmit",
"ci": "pnpm run check && pnpm run typecheck && pnpm run build",
"db:migrate": "tsx scripts/migrate.ts",
"bot:setup": "tsx scripts/setup-bot.ts",
"test": "pnpm run test:integration && pnpm run test:e2e",
"test:integration": "vitest run tests/integration",
"test:e2e": "cucumber-js",
"test:ui": "pnpm run build && playwright test",
"test:watch": "vitest"
},
"dependencies": {
"@radix-ui/themes": "^3.3.0",
"@tanstack/react-query": "^5.99.0",
"effect": "^3.21.0",
"grammy": "^1.42.0",
"hono": "^4.12.12",
"mongodb": "^7.1.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@cucumber/cucumber": "^12.7.0",
"@hono/node-server": "^1.19.14",
"@playwright/test": "^1.59.1",
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vercel/node": "^5.7.4",
"@vitejs/plugin-react": "^4.7.0",
"mongodb-memory-server": "^11.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.0.0"
}