-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 2.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@unique-nft/contracts",
"description": "Smart Contract library for Unique Network",
"version": "0.0.2",
"files": [
"/**/*.sol",
"!/recipes"
],
"license": "MIT",
"keywords": [
"unique network",
"blockchain",
"polkadot",
"nft",
"contracts"
],
"homepage": "https://github.com/UniqueNetwork/unique-contracts",
"bugs": "https://github.com/UniqueNetwork/unique-contracts/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/UniqueNetwork/unique-contracts.git"
},
"scripts": {
"test": "yarn compile && yarn test:hh & yarn test:f",
"test:f": "forge test --gas-report",
"test:hh": "npx hardhat test --no-compile --config ./hardhat.test.config.ts --network testnet",
"run:hh": "npx hardhat run --no-compile",
"compile": "yarn compile:hh & yarn compile:f",
"compile:hh": "npx hardhat compile --force",
"compile:f": "forge compile --force",
"codestyle": "prettier . --write",
"ci": "yarn compile:f && yarn test:f",
"prepublishOnly": "yarn ci",
"changeset": "npx changeset",
"remove-dist": "rm -rf dist",
"build": "yarn remove-dist && mkdir -p dist && cp -r package.json README.md CHANGELOG.md .changeset dist/ && rsync -a contracts/ dist/",
"local-release": "yarn ci && cd ./dist && changeset version && changeset publish && yarn remove-dist"
},
"dependencies": {
"@unique-nft/solidity-interfaces": "^1.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.6",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"@unique-nft/sdk": "2.5.0",
"@unique-nft/utils": "^0.3.20",
"chai": "^4.2.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.2",
"hardhat": "^2.22.7",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.3.2",
"typescript": "~5.0.4"
},
"packageManager": "[email protected]"
}