-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.13 KB
/
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
28
29
30
{
"name": "hc_notifier",
"version": "1.0.0",
"description": "Run any hApp as a notifier agent ",
"main": "index.js",
"type": "module",
"scripts": {
"generate": "hc s clean && echo \"pass\" | hc s -f=18929 --piped generate -s $npm_config_seed whosin.happ -a myApp1234 network --bootstrap https://bootstrap.holo.host/ webrtc wss://signal-2.infra.holochain.org",
"start": "pm2 start --name launch-happ \"echo 'pass' | hc s -f=18929 --piped run 0 -p 17183\"",
"restart": "pm2 start --name launch-happ \"echo 'pass' | hc s -f=18929 --piped run 0\"",
"notifier": "pm2 start claimNotifier.js",
"stop": "pm2 delete all",
"notifier:list": "pm2 list",
"start:debug": "echo \"pass\" | RUST_BACKTRACE=1 hc s -f=18929 --piped run 0 -p 17183",
"restart:debug": "echo \"pass\" | hc s -f=18929 --piped run 0",
"notifier:debug": "node claimNotifier.js"
},
"dependencies": {
"pm2": "^5.3.0",
"node-schedule": "2.1.1",
"@holochain/client": "^0.18.0-dev.0"
},
"devDependencies": {
"concurrently": "^6.2.1",
"rimraf": "^3.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.4"
}
}