forked from zama-ai/fhevm-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.13 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.13 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
{
"name": "root",
"private": true,
"license": "BSD-3-Clause-Clear",
"version": "0.4.2",
"workspaces": [
"packages/mock-utils",
"packages/mock-utils/src",
"packages/hardhat-plugin/"
],
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@typechain/ethers-v6": "^0.5.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.10",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"ethers": "^6.14.3",
"globals": "^15.13.0",
"prettier": "^3.5.3",
"prettier-plugin-solidity": "^1.4.2",
"solhint": "^5.0.5",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.15",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"scripts": {
"prepare": "npm run build",
"rebuild": "npm run clean && npm run build:utils && npm run build:hh && npm run lint",
"version": "cd ./scripts && ./bump-version.sh",
"genversion:utils": "cd packages/mock-utils/scripts && node ./generate-version.cjs",
"build": "npm run build:utils && npm run build:hh",
"build:hh": "cd packages/hardhat-plugin && npm run build",
"build:utils": "cd packages/mock-utils && npm run build",
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"prettier:check": "prettier --config ./prettier.config.js --check \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:write": "prettier --config ./prettier.config.js --write \"**/*.{js,json,md,sol,ts,yml}\"",
"test": "npm run test --workspaces --if-present",
"test:node": "cd ./packages/hardhat-plugin/test && ./test-hardhat-node.sh",
"test:anvil": "cd ./packages/hardhat-plugin/test && ./test-anvil.sh",
"test:anvilsimple": "cd ./packages/hardhat-plugin/test && ./test-anvil-simple.sh"
},
"overrides": {
"vite": ">=7.0.7"
}
}