forked from 1inch/limit-order-protocol-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.68 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
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
98
{
"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://[email protected]: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",
"build": "tsc --module commonjs",
"test-build": "rm -rf dist && yarn run test:e2e:ci && yarn run make-badges && tsc --module commonjs && yarn run postbuild",
"install-submodules": "git submodule update --init --recursive",
"test:e2e": "hardhat test",
"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": "2.2.27",
"@chainlink/contracts": "0.6.1",
"@ethersproject/abi": "^5.1.1",
"@ethersproject/bignumber": "^5.1.1",
"@metamask/eth-sig-util": "^4.0.1",
"ethers": "5.7.2",
"prompts": "^2.4.1",
"web3": "^1.8.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"chai": "4.3.7",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@nomicfoundation/hardhat-network-helpers": "1.0.6",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@openzeppelin/contracts": "4.9.0",
"@types/jest": "^26.0.22",
"@types/prompts": "^2.0.12",
"@typescript-eslint/eslint-plugin": "4",
"babel-jest": "^26.6.3",
"eslint": "7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-unused-imports": "^1.1.1",
"hardhat": "2.17.2",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.30",
"hardhat-gas-reporter": "1.0.9",
"hardhat-tracer": "2.3.2",
"husky": "^6.0.0",
"istanbul-badges-readme": "^1.2.1",
"jest": "^26.6.3",
"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": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"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"
]
}
}