-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.63 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
{
"name": "CafeCosmosContracts",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "mud build",
"clean": "forge clean && rimraf src/codegen",
"deploy:local": "pnpm run build && mud deploy",
"deploy:testnet": "pnpm run build && mud deploy --profile=lattice-testnet",
"dev": "pnpm mud dev-contracts",
"lint": "pnpm run prettier && pnpm run solhint",
"prettier": "prettier --write 'src/**/*.sol'",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"test": "tsc --noEmit && mud test",
"circuit:compile": "npx axiom compile axiom/circuit.ts --function feeAverage --inputs data/inputs/defaultInput.json --provider $PROVIDER_URI_GOERLI",
"circuit:run": "npx axiom run axiom/circuit.ts --function feeAverage --inputs data/inputs/input.json --provider $PROVIDER_URI_GOERLI"
},
"license": "MIT",
"devDependencies": {
"@axiom-crypto/client": "0.1.1",
"@types/node": "^18.19.67",
"ds-test": "github:dapphub/ds-test#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"forge-std": "github:foundry-rs/forge-std#74cfb77e308dd188d2f58864aaf44963ae6b88b1",
"prettier": "^3.4.2",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^3.6.2",
"solhint-config-mud": "^2.2.14",
"solhint-plugin-mud": "^2.2.14"
},
"dependencies": {
"@axiom-crypto/client": "0.1.1",
"@latticexyz/cli": "^2.2.14",
"@latticexyz/schema-type": "2.2.14",
"@latticexyz/store": "^2.2.14",
"@latticexyz/world": "^2.2.14",
"@latticexyz/world-modules": "^2.2.14",
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6"
}
}