-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1009 Bytes
/
package.json
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
{
"name": "chainscan",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"version": "1.0.0",
"description": "## Open tasks: - If user inputs a proxy contract, show him the implementaion possible events - user inputs handeling - Allow user to unregister from alerts - Stabalize all Telegam bot state cases - Add alertIds to register",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"service1": "node ./apps/telegram_bot/src/bot.js",
"service2": "tsc -p apps/registry && node ./apps/registry/dist/server.js",
"service3": "node ./apps/chain_listener/src/chain_listener.js",
"service4": "pnpm --prefix ./apps/webapp-simple run dev",
"build-webapp-simple": "pnpm --prefix ./apps/webapp-simple run build",
"start": "run-p service1 service2 service3 service4"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.4.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1"
}
}