forked from terra-money/enterprise-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.82 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": "apps-monorepo",
"version": "1.0.0",
"private": true,
"description": "",
"license": "ISC",
"author": "Terra Money <[email protected]>",
"type": "module",
"workspaces": [
"contracts"
],
"scripts": {
"deploy:enterprise-factory": "TERRARIUMS_ARCH_ARM64=true yarn terrariums run tasks/deploy_enterprise_factory.ts --network testnet --signer pisco",
"deploy:enterprise-factory:mainnet": "yarn terrariums run tasks/deploy_enterprise_factory.ts --network mainnet --signer phoenix",
"deploy:enterprise-factory:local": "TERRARIUMS_ARCH_ARM64=true yarn terrariums run tasks/deploy_enterprise_factory.ts --network localterra --signer pisco",
"testdata:enterprise-factory:local": "TERRARIUMS_ARCH_ARM64=true yarn terrariums run tasks/create_enterprise_test_data.ts --network localterra --signer pisco",
"migrate:enterprise-factory": "TERRARIUMS_ARCH_ARM64=true yarn terrariums run tasks/migrate_enterprise_factory.ts --network testnet --signer pisco",
"migrate:enterprise-factory:mainnet": "yarn terrariums run tasks/migrate_enterprise_factory.ts --network mainnet --signer phoenix",
"migrate:enterprise-factory:local": "TERRARIUMS_ARCH_ARM64=true yarn terrariums run tasks/migrate_enterprise_factory.ts --network localterra --signer pisco",
"docker:enterprise-api": "docker build . -f apps/enterprise-api/Dockerfile -t payments/api",
"docker:enterprise-indexers": "docker build . -f indexers/enterprise/Dockerfile -t payments/indexers",
"postinstall": "husky install"
},
"dependencies": {
"@types/node": "^16.11.56",
"terrariums": "^1.1.9",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"devDependencies": {
"husky": "^8.0.1",
"jest-watch-typeahead": "2.1.1",
"json-schema-to-typescript": "^11.0.2",
"lorem-ipsum": "^2.0.8"
},
"packageManager": "[email protected]"
}