-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.62 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
{
"name": "@synthetixio/router",
"version": "3.4.0",
"publishConfig": {
"access": "public"
},
"description": "Synthetix Router Proxy Architecture Manager",
"main": "dist/index.js",
"source": "src/index.ts",
"cannon": "utils/cannon.js",
"types": "dist/index.d.ts",
"keywords": [
"deploy",
"solidity",
"cannon"
],
"files": [
"src",
"dist",
"templates",
"utils"
],
"author": "Synthetix",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha",
"coverage": "nyc yarn test",
"test:watch": "yarn test --watch",
"prepublishOnly": "yarn build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pretty": "prettier --check .",
"pretty:fix": "prettier --write ."
},
"peerDependencies": {
"hardhat": "^2.0.0",
"solc": "^0.8.17"
},
"dependencies": {
"@ethersproject/keccak256": "^5.7.0",
"debug": "^4.3.4",
"mustache": "^4.2.0"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@types/debug": "^4.1.8",
"@types/mocha": "^10.0.1",
"@types/mustache": "^4.2.2",
"@types/node": "^18.17.14",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"ethers": "^5.7.2",
"hardhat": "^2.17.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"solc": "^0.8.21",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
},
"gitHead": "6ad3588038432a2015409633fe7d0dc641f54a27",
"packageManager": "yarn@3.6.3"
}