-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "@waveshq/state-relayer-bot",
"version": "0.0.3",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build:docker": "docker build -t state-relayer/hardhatnetwork:0.0.0 .",
"clean": "hardhat clean",
"compile": "npm run solhint && hardhat compile",
"solhint": "solhint contracts/**/*.sol",
"test": "npm run solhint && hardhat test",
"test-i9n": "jest"
},
"prettier": "@birthdayresearch/sticky-prettier",
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@birthdayresearch"
],
"overrides": [
{
"files": [
"*.ts"
],
"rules": {
"no-console": "off",
"import/no-default-export": "off"
}
}
]
},
"jest": {
"preset": "@birthdayresearch/sticky-jest"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"@waveshq/standard-defichain-jellyfishsdk": "^0.52.1",
"@waveshq/walletkit-bot": "^0.47.0",
"axios": "^1.4.0",
"dotenv": "^16.1.4",
"hardhat": "^2.13.1"
},
"devDependencies": {
"@birthdayresearch/eslint-config": "^0.5.14",
"@birthdayresearch/sticky-jest": "^0.8.5",
"@birthdayresearch/sticky-prettier": "^0.8.5",
"@birthdayresearch/sticky-testcontainers": "^0.8.5",
"@birthdayresearch/sticky-typescript": "^0.5.14",
"@nomicfoundation/hardhat-ledger": "^1.0.1",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"solhint": "^3.4.1",
"ts-jest": "^29.1.1"
}
}