-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
62 lines (62 loc) · 2.21 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
{
"name": "@oasisprotocol/sapphire-contracts",
"version": "0.2.11",
"license": "Apache-2.0",
"description": "Solidity smart contract library for confidential contract development",
"homepage": "https://github.com/oasisprotocol/sapphire-paratime/tree/main/contracts",
"repository": {
"type": "git",
"url": "https://github.com/oasisprotocol/sapphire-paratime.git"
},
"scripts": {
"doc": "forge doc --build && ./post-build-doc.sh",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:solhint": "solhint 'contracts/**/*.sol'",
"lint::prettier": "prettier --cache --check --plugin-search-dir=. --cache '*.json' '**/*.ts' '**/*.sol'",
"lint": "npm-run-all lint:**",
"format:eslint": "eslint --fix --ignore-path .gitignore --ext .ts",
"format:solhint": "solhint --fix 'contracts/**/*.sol'",
"format::prettier": "prettier --write --plugin-search-dir=. '*.json' '**/*.ts' '**/*.sol'",
"format": "npm-run-all format:**",
"build": "hardhat compile",
"test": "hardhat test --network sapphire-localnet"
},
"files": [
"contracts"
],
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@oasisprotocol/client": "^0.1.1-alpha.2",
"@oasisprotocol/sapphire-hardhat": "workspace:^",
"@oasisprotocol/sapphire-paratime": "workspace:^",
"@oasisprotocol/sapphire-ethers-v6": "workspace:^",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cborg": "^1.9.5",
"chai": "^4.3.6",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"ethers": "6.x",
"hardhat": "^2.22.2",
"hardhat-watcher": "^2.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "1.0.0-beta.24",
"siwe": "^2.3.2",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^4.8.3",
"@noble/hashes": "1.3.2"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2"
}
}