-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.29 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": "yar_bridge",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build_validator": "dotenv -- turbo run build_validator",
"run_validator": "dotenv -- turbo run validator --concurrency=20",
"validator_dev": "dotenv -- turbo run validator_dev --concurrency=20",
"local_node": "cd apps/evm_contracts && npx hardhat node --fulltrace",
"test_e2e": "cd apps/evm_contracts && npm run test_e2e",
"export_abi": "dotenv -- turbo run export_abi --filter=evm_contracts",
"build_frontend": "turbo run build_frontend",
"build_repo": "dotenv -- turbo run typechain",
"clear": "dotenv -- turbo run clear",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"update_addresses": "dotenv -- turbo run export_deployments_addresses --filter=evm_contracts && dotenv -- turbo run build_configs",
"update_contracts": "dotenv -- turbo run export_abi --filter=evm_contracts && dotenv -- turbo run build_typechains",
"chains_rpc_validate": "node chains_rpc_validate.js"
},
"devDependencies": {
"prettier": "latest",
"turbo": "^1.9.3"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv-cli": "^7.2.1",
"tsup": "^6.7.0"
},
"packageManager": "npm@9.6.0"
}