This repository was archived by the owner on Jan 23, 2026. It is now read-only.
forked from PracticalParticle/Bloxchain-Protocol
-
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) · 2.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.2 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": "Bloxchain",
"version": "1.0.0",
"description": "Particle's Bloxchain protocol smart state abstraction contracts",
"main": "truffle-config.js",
"scripts": {
"test:truffle": "truffle test",
"test:hardhat": "hardhat test",
"compile:truffle": "truffle compile",
"compile:truffle:size": "npm run compile:truffle && npx truffle run contract-size",
"compile:hardhat": "hardhat compile",
"deploy:truffle": "npx truffle migrate --network development --reset && node scripts/extract-abi.js",
"deploy:hardhat": "hardhat run scripts/deploy.js",
"test:sanity:secure-ownable": "node scripts/sanity/secure-ownable/run-tests.js --all",
"test:sanity:simple-vault": "node scripts/sanity/simple-vault/run-tests.js --all",
"test:e2e": "npm run deploy:truffle && npm run test:sanity:secure-ownable",
"test:sanity-sdk:secure-ownable": "ts-node --transpile-only --project scripts/sanity-sdk/tsconfig.json scripts/sanity-sdk/secure-ownable/run-tests.ts",
"test:sanity-sdk:workflow": "ts-node --transpile-only --project scripts/sanity-sdk/tsconfig.json scripts/sanity-sdk/workflow/run-tests.ts",
"test:sanity-sdk:all": "npm run test:sanity-sdk:secure-ownable -- --all && npm run test:sanity-sdk:workflow -- --all",
"docgen": "hardhat docgen",
"format": "prettier --config .prettierrc --write \"contracts/**/*.sol\""
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts"
],
"author": "Particle Crypto Security",
"license": "MPL-2.0",
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@types/jest": "^29.5.5",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"hardhat": "^2.17.1",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.4",
"solidity-docgen": "^0.6.0-beta.35",
"ts-jest": "^29.1.1",
"truffle": "^5.11.5",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1",
"viem": "^2.23.7"
}
}