forked from Arnav-panjla/PanoptiCode-AVAL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 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
{
"name": "encryptederc",
"version": "1.0.0",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/contracts": "^5.1.0",
"@solarity/chai-zkit": "^0.3.3",
"@solarity/hardhat-zkit": "^0.5.16",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@zk-kit/baby-jubjub": "^1.0.3",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"hardhat": "^2.19.4",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"maci-crypto": "^2.0.0",
"poseidon-lite": "^0.3.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.4.2",
"solhint": "^5.0.5",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/cli/index.ts",
"test": "mocha 'src/**/*.test.js'",
"postinstall": "npx hardhat compile & npx hardhat zkit make --force && npx hardhat zkit verifiers",
"lint:sol": "solhint '**/*.sol' --config ./.solhint.json --ignore-path ./.solhintignore --max-warnings 0 && npx prettier --check '**/*.sol' --config ./.prettierrc",
"lint:ts": "npx biome lint .",
"lint": "npm run lint:sol && npm run lint:ts"
},
"bin": {
"panoptio-eerc": "dist/src/cli/index.js"
},
"keywords": [],
"author": "",
"repository": {
"url": "https://github.com/ava-labs/EncryptedERC",
"type": "git"
},
"license": "MIT",
"dependencies": {
<<<<<<< HEAD
"commander": "^14.0.0",
"nanospinner": "^1.2.2",
"ora": "^8.2.0"
=======
"@openzeppelin/contracts": "^5.0.1",
"@solarity/zkit": "^0.3.7",
"@types/qrcode": "^1.5.5",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"ethers": "^6.11.1",
"ora": "^5.4.1",
"qrcode": "^1.5.4",
"viem": "^2.29.4"
>>>>>>> Random-Try
}
}