-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.23 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
{
"private": true,
"name": "@oasisprotocol/demo-starter-backend",
"version": "1.0.0",
"license": "Apache-2.0",
"main": "./lib/cjs/src/index.js",
"module": "./lib/esm/src/index.js",
"types": "./lib/cjs/src/index.d.ts",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"files": [
"contracts",
"lib",
"src"
],
"scripts": {
"lint:prettier": "prettier --check --plugin-search-dir=. --cache '*.json' 'tsconfig/*.json' '{scripts,test}/**/*.ts' 'contracts/**/*.sol'",
"lint:solhint": "solhint 'contracts/**/*.sol'",
"lint": "npm-run-all lint:**",
"format:prettier": "prettier --write --plugin-search-dir=. --cache '*.json' 'tsconfig/*.json' '{scripts,test}/**/*.ts' 'contracts/**/*.sol'",
"format:solhint": "solhint --fix 'contracts/**/*.sol'",
"format": "npm-run-all format:**",
"build:compile": "hardhat compile",
"build:cjs": "tsc -p tsconfig/cjs.json",
"build:esm": "tsc -p tsconfig/esm.json",
"build": "npm-run-all build:compile --parallel build:cjs build:esm",
"test": "hardhat test",
"prepublishOnly": "pnpm build"
},
"exports": {
"default": "./lib/esm/src/index.js",
"node": {
"import": "./lib/esm/src/index.js",
"require": "./lib/cjs/src/index.js"
}
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@openzeppelin/contracts": "^4.8.1",
"dotenv": "^16.3.1",
"ethers": "^5.7.2"
},
"devDependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@oasisprotocol/sapphire-contracts": "^0.2.3",
"@oasisprotocol/sapphire-hardhat": "^2.16.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"canonicalize": "^1.0.8",
"chai": "^4.3.7",
"hardhat": "^2.16.1",
"hardhat-watcher": "^2.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "1.1.2",
"solhint": "^3.4.0",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.5"
}
}