-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.46 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.46 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "smartcontracts",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run generate:contract-types && tsc -b ./tsconfig.build.json",
"build:docker": "docker build -t bridge-packages/hardhatnetwork:0.0.0 .",
"clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo && hardhat clean --config ./src/hardhat.config.ts",
"generate:contract-types": "hardhat compile --config ./src/hardhat.config.ts",
"postinstall": "pnpm run generate:contract-types",
"lint": "eslint . --fix",
"test": "jest --coverage",
"test:hardhat": "pnpm run generate:contract-types && hardhat test --config ./src/hardhat.config.ts"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"prettier": "@stickyjs/prettier",
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@stickyjs"
],
"overrides": [
{
"files": [
"*.ts"
],
"rules": {
"no-console": "off",
"no-restricted-properties": "warn",
"no-underscore-dangle": "off",
"check-file/filename-naming-convention": "off",
"import/extensions": "off",
"import/no-default-export": "off"
}
}
]
},
"jest": {
"displayName": "test:hardhat",
"preset": "@stickyjs/turbo-jest",
"reporters": [
"default"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/src/test"
],
"testTimeout": 300000
},
"devDependencies": {
"@ethersproject/abi": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@openzeppelin/contracts": "4.8.2",
"@openzeppelin/contracts-upgradeable": "4.8.2",
"@stickyjs/eslint-config": "^1.3.4",
"@stickyjs/testcontainers": "^1.3.4",
"@stickyjs/turbo-jest": "^1.3.4",
"@stickyjs/typescript": "^1.3.4",
"@typechain/ethers-v5": "10.2.1",
"@types/chai": "4.3.5",
"@types/mocha": "10.0.4",
"base64-sol": "1.1.0",
"chai": "4.3.7",
"cross-fetch": "^3.1.8",
"dotenv": "^16.3.1",
"ethers": "~5.7.2",
"hardhat": "2.14.0",
"mocha": "10.2.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}