-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.34 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
{
"name": "gateway",
"version": "0.1.0",
"scripts": {
"orion-miniapp": "npm run orion-miniapp:build && npm run orion-miniapp:start",
"orion-miniapp:build": "vite build --config apps/extensions/telegram/orion-miniapp/vite.config.mjs",
"orion-miniapp:start": "node apps/extensions/telegram/orion-miniapp/server.cjs",
"test": "npm run test:py && npm run typecheck:ts && npm run test:ts && python3 scripts/check_soul_sync.py",
"test:py": "python3 -m unittest discover -s tests -p 'test_*.py' && python3 scripts/validate_task_packets.py",
"test:ts": "vitest run",
"typecheck:ts": "tsc --project tsconfig.json --noEmit && tsc --project apps/extensions/telegram/orion-miniapp/tsconfig.json --noEmit"
},
"dependencies": {
"dotenv": "^17.2.4",
"ethers": "^6.16.0",
"grammy": "^1.41.1",
"js-yaml": "^4.1.0",
"node-fetch": "^2.7.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^25.3.5",
"@types/node-fetch": "^2.6.13",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"better-sqlite3": "^12.9.0",
"clawhub": "^0.5.0",
"jsdom": "^27.0.1",
"typescript": "^5.9.2",
"vite": "^7.1.10",
"vitest": "^4.0.18"
}
}