-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.44 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.44 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
{
"name": "fracti",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "AI-powered Telegram Mini App for expense splitting and on-chain TON settlements",
"license": "MIT-0",
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.20.0"
},
"scripts": {
"dev": "pnpm --filter @fracti/web dev",
"dev:bot": "pnpm --filter @fracti/bot dev",
"build": "pnpm -r build",
"build:gui": "pnpm --filter @fracti/web build",
"build:bot": "pnpm --filter @fracti/bot build",
"typecheck": "pnpm --filter @fracti/server exec npx tsc --noEmit && pnpm --filter @fracti/bot exec npx tsc --noEmit && pnpm --filter @fracti/web exec npx tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"check": "pnpm typecheck && pnpm lint && pnpm format:check",
"cdk:synth": "pnpm --filter @infra/cdk synth",
"cdk:deploy": "pnpm --filter @infra/cdk run deploy",
"cdk:bootstrap": "pnpm --filter @infra/cdk bootstrap",
"setup": "pnpm --filter @infra/cdk setup",
"report": "pnpm --filter @infra/cdk report",
"deploy": "bash scripts/deploy.sh dev",
"deploy:frontend": "bash scripts/deploy.sh dev frontend",
"deploy:backend": "bash scripts/deploy.sh dev backend",
"deploy:bot": "bash scripts/deploy.sh dev bot"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitejs/plugin-react": "^4.5.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"jsdom": "^27.4.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "^5.9.3",
"typescript-eslint": "^8.32.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@clack/prompts": "^0.9.0",
"cross-spawn": "^7.0.6",
"grammy": "^1.39.3",
"picocolors": "^1.1.0",
"pnpm": "^10.28.0",
"yaml": "^2.7.0"
}
}