This repository was archived by the owner on Jul 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.72 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.72 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
90
91
92
93
94
95
96
97
{
"name": "@1inch/limit-order-protocol-utils",
"version": "3.2.3",
"description": "Utility for limit order protocol",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "ssh://git@github.com:1inch/limit-order-protocol-utils.git",
"directory": "@1inch/limit-order-protocol"
},
"scripts": {
"prebuild": "rm -rf dist && yarn run test:coverage && yarn run test:e2e:ci && yarn run make-badges && yarn run lint",
"build": "tsc --module es2020",
"test-build": "yarn run lint && rm -rf dist && yarn run test:e2e:ci && yarn run make-badges && tsc --module es2020 && yarn run postbuild",
"install-submodules": "git submodule update --init --recursive",
"test:e2e": "hardhat test --tsconfig tsconfig.hardhat.json",
"test:e2e:ci": "yarn run install-submodules && yarn run test:e2e",
"test:stack-trace": "hardhat test --show-stack-traces",
"postbuild": "cp package.json dist && cp README.md dist && chmod +x dist/utils/limit-order-rfq.utils.js",
"lint": "eslint ./src --ext .js,.ts",
"release": "standard-version",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"typecheck": "tsc --noEmit --skipLibCheck",
"prettier": "prettier --write .",
"make-badges": "istanbul-badges-readme",
"ci-pipeline": "yarn run lint && yarn run test && yarn run test:e2e:ci && yarn run typecheck",
"limit-order-rfq-utils": "ts-node --project tsconfig.scripts.json ./src/utils/limit-order-rfq.utils.ts"
},
"dependencies": {
"@1inch/solidity-utils": "3.5.5",
"@chainlink/contracts": "0.6.1",
"@ethersproject/abi": "^5.1.1",
"@ethersproject/bignumber": "^5.1.1",
"@metamask/eth-sig-util": "^4.0.1",
"ethers": "6.9.0",
"prompts": "^2.4.1",
"web3": "^1.8.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/helper-get-function-arity": "^7.16.7",
"@babel/preset-env": "7.23.8",
"@babel/preset-typescript": "7.23.3",
"@nomicfoundation/hardhat-chai-matchers": "2.0.3",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/contracts": "5.0.1",
"@types/jest": "^29.5.11",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "6.18.1",
"babel-jest": "^29.7.0",
"chai": "4.3.7",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unused-imports": "^3.0.0",
"hardhat": "2.19.4",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.45",
"hardhat-tracer": "2.7.0",
"husky": "^6.0.0",
"istanbul-badges-readme": "^1.8.5",
"jest": "^29.7.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"standard-version": "^9.2.0",
"ts-loader": "^9.0.2",
"ts-mockito": "^2.6.1",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"bin": {
"limit-order-rfq-utils": "./utils/limit-order-rfq.utils.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn run typecheck"
}
},
"lint-staged": {
"*.{js,ts,md,json}": [
"yarn run prettier"
],
"*.{js,ts}": [
"yarn run lint"
]
}
}