-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
47 lines (47 loc) · 2.74 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
38
39
40
41
42
43
44
45
46
47
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"postinstall": "husky install",
"stub-dev-deployments": "sh ./mock_all_dev.sh",
"clean": "git clean -fdx -e \".env*\"",
"start": "HARDHAT_FORK=mainnet yarn workspaces foreach -pvi --include '{@goldfinch-eng/protocol,@goldfinch-eng/server,@goldfinch-eng/functions}' run start",
"start:local": "yarn workspace @goldfinch-eng/protocol run generate-merkle-root:local && REACT_APP_GCLOUD_FUNCTIONS_URL=http://localhost:5001/goldfinch-frontends-dev/us-central1 BACKER_MERKLE_DISTRIBUTOR_INFO_PATH=./blockchain_scripts/merkle/backerMerkleDistributor/merkleDistributorInfo.dev.json BACKER_MERKLE_DIRECT_DISTRIBUTOR_INFO_PATH=./blockchain_scripts/merkle/backerMerkleDirectDistributor/merkleDirectDistributorInfo.dev.json MERKLE_DISTRIBUTOR_INFO_PATH=./blockchain_scripts/merkle/merkleDistributor/merkleDistributorInfo.dev.json MERKLE_DIRECT_DISTRIBUTOR_INFO_PATH=./blockchain_scripts/merkle/merkleDirectDistributor/merkleDirectDistributorInfo.dev.json CHAIN_IDENTIFIER=http://localhost:8545 LOCAL=yes yarn workspaces foreach -pvi --include '{@goldfinch-eng/protocol,@goldfinch-eng/server,@goldfinch-eng/functions}' run start",
"test": "NODE_OPTIONS=--unhandled-rejections=strict yarn workspaces foreach run test",
"test:protocol": "yarn workspace @goldfinch-eng/protocol run test",
"test:autotasks": "yarn workspace @goldfinch-eng/autotasks run test",
"lint": "yarn stub-dev-deployments && yarn workspaces foreach -pt run lint",
"lint:fix": "yarn stub-dev-deployments && yarn workspaces foreach -pt run lint:fix",
"build": "yarn workspaces foreach -pt run build",
"build:core": "yarn workspaces foreach -ptRvi --from '{@goldfinch-eng/protocol,@goldfinch-eng/server,@goldfinch-eng/functions}' run build",
"pre-commit": "yarn workspaces foreach -vA --since --exclude root run pre-commit"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/experimental-utils": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-mocha-no-only": "^1.1.1",
"hardhat": "^2.12.2",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"prettier-plugin-solidity": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"resolutions": {
"@types/react": "17.0.39",
"@types/react-dom": "17.0.6",
"@float-capital/float-subgraph-uncrashable": "0.0.0-alpha.6",
"hardhat-deploy@^0.11.14": "patch:hardhat-deploy@npm%3A0.11.22#./.yarn/patches/hardhat-deploy-npm-0.11.22-0e28661e12.patch"
},
"packageManager": "[email protected]"
}