This repository was archived by the owner on Aug 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "@projecta/min-proxy",
"version": "0.1.1",
"description": "minimal ethereum proxy contract implementation with solidity integration",
"engines": {
"node": ">=16 <18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/contracts",
"/contracts-gen",
"/dist",
"!/contracts/test",
"!/contracts/mocks"
],
"scripts": {
"lint": "npm run lint:solhint && npm run lint:eslint && npm run lint:prettier",
"lint:solhint": "solhint '{contracts,contracts-gen}/**/*.sol'",
"lint:eslint": "eslint . --ext .ts",
"lint:prettier": "prettier --check .",
"compile-contracts": "hardhat compile",
"precompile-contracts": "ts-node scripts/prebuild.ts",
"compile-ts": "tsc -p tsconfig.build.json",
"build": "npm run compile-contracts",
"test": "hardhat test --typecheck",
"prepack": "npm run compile-ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@ethersproject/asm": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@openzeppelin/contracts": "^4.7.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"ethers": "^5.7.1",
"hardhat": "^2.12.1",
"mocha": "^10.0.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
}
}