-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.35 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.35 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
{
"name": "contracts-neon",
"version": "1.0.0",
"description": "TrueFi Contracts-neon",
"scripts": {
"clean": "rm -rf ./build && hardhat clean",
"build:fuzz": "pnpm clean && pnpm build:hardhat && pnpm build:typechain && pnpm build:mars && pnpm run build:merge-deployments",
"build:hardhat": "hardhat compile",
"build:copyBeryllium": "cp ./contracts-beryllium/*.json ./build",
"build:typechain": "typechain --target ethers-v5 --out-dir build/types 'build/*.json'",
"build:verify": "ts-node spec/generateConfigs.ts",
"build": "pnpm clean && pnpm build:hardhat && pnpm build:copyBeryllium && pnpm build:typechain",
"test": "mocha 'test/**/*.test.ts'",
"fuzz": "./fuzzing/fuzz.py",
"fuzz:check": "./fuzzing/fuzz.py --test-limit 1",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier 'contracts/**/*.sol' --check --loglevel error",
"lint:ts": "eslint '{test,scripts}/**/*.ts' -c .eslintrc.json --cache",
"lint": "pnpm run lint:sol && pnpm run lint:ts",
"lint:fix": "prettier 'contracts/**/*.sol' --write --loglevel error && pnpm run lint:ts --fix",
"verify": "bash spec/verify.sh",
"verify:sanity": "bash spec/verify.sh -s",
"verify:typecheck": "bash ./spec/verify.sh -t",
"analyze": "slither ."
},
"author": "",
"license": "MIT",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"@typescript-eslint/parser": "^5.46.0",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"ethereum-mars": "0.2.6-dev.7dac279",
"ethereum-waffle": "4.0.10",
"ethers": "^5.7.0",
"ganache": "7.1.0",
"hardhat": "^2.9.2",
"hardhat-waffle-dev": "2.0.3-dev.c5b5c29",
"mocha": "^10.0.0",
"prettier": "^2.8.1",
"solc": "^0.8.10",
"solhint": "^3.3.7",
"solidity-coverage": "0.7.16",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.9.0",
"typechain": "^8.0.0",
"typescript": "4.9.4"
},
"dependencies": {
"@openzeppelin/contracts": "4.6.0",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"merkletreejs": "^0.2.31"
}
}