-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 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
31
32
33
34
35
36
37
{
"name": "@wormhole-foundation/wormhole-monitor",
"version": "0.0.1",
"private": true,
"main": "cloud_functions/dist/index.js",
"scripts": {
"build": "tsc -b -i",
"build:dashboard": "npm run build && npm run build -w dashboard",
"build:watcher": "npm run build && npm run build -w watcher",
"clean": "tsc -b --clean",
"watch": "tsc -b -w -i",
"cf:dev": "npm run build && functions-framework --target=$FUNCTION",
"cf:deploy": "bash cloud_functions/scripts/deploy.sh"
},
"workspaces": [
"common",
"watcher",
"dashboard",
"cloud_functions",
"database"
],
"devDependencies": {
"prettier": "^2.8.1",
"typescript": "^5.4.3"
},
"dependencies": {
"@google-cloud/functions-framework": "^3.4.0",
"@wormhole-foundation/sdk-base": "^0.14.0",
"@wormhole-foundation/sdk-definitions": "^0.14.0",
"@wormhole-foundation/sdk-evm": "^0.14.0",
"@wormhole-foundation/sdk-evm-core": "^0.14.0",
"@wormhole-foundation/sdk-icons": "^0.14.0",
"@wormhole-foundation/sdk-solana": "^0.14.0",
"@wormhole-foundation/sdk-solana-core": "^0.14.0",
"axios": "^1.5.0"
}
}