-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.39 KB
/
package.json
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
75
76
77
78
79
80
{
"name": "@devprotocol/protocol-v2",
"version": "0.5.1",
"description": "Securitize for Internet assets",
"scripts": {
"test": "truffle test --config truffle-config.js",
"generate": "yarn compile && typechain --target=truffle-v4 './build/**/*.json'",
"deploy": "truffle migrate --network",
"predeploy": "yarn build",
"lint": "yarn lint:eslint && yarn lint:solhint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:solhint": "solhint --fix --max-warnings 0 \"contracts/**/*.sol\"",
"lint:format": "prettier --write '**/*.{sol,ts,js,json,md,yml}'",
"prepack": "yarn build",
"build": "tsc -p tsconfig.build.json",
"prebuild": "del 'migrations/**/*.js' && yarn generate",
"prepare": "husky install",
"compile": "truffle compile --config truffle-config.js"
},
"files": [
"contracts/interface"
],
"author": "aggre",
"license": "MPL-2.0",
"devDependencies": {
"@devprotocol/dev-kit": "8.7.0",
"@devprotocol/util-ts": "4.0.0",
"@openzeppelin/truffle-upgrades": "1.21.0",
"@truffle/hdwallet-provider": "2.1.15",
"@typechain/truffle-v4": "4.1.0",
"@types/bent": "7.3.8",
"@types/dotenv": "8.2.3",
"@types/node": "22.10.2",
"@types/shelljs": "0.8.15",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"arb-ethers-web3-bridge": "0.7.3",
"bent": "7.3.12",
"bignumber.js": "9.1.2",
"del-cli": "6.0.0",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-typescript": "0.55.1",
"husky": "9.1.7",
"js-base64": "3.7.7",
"p-queue": "6.6.2",
"prettier": "3.4.2",
"prettier-plugin-solidity": "1.4.1",
"solhint": "5.0.4",
"truffle": "5.4.1",
"truffle-plugin-verify": "0.6.7",
"truffle-typings": "1.0.8",
"ts-generator": "0.1.1",
"ts-node": "10.9.2",
"typechain": "8.3.2",
"typechain-target-truffle": "1.0.2",
"typescript": "5.0.4",
"web3": "1.10.0",
"web3-utils": "4.3.3"
},
"dependencies": {
"@devprotocol/util-contracts": "3.3.0",
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/contracts-upgradeable": "4.3.2"
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/protocol.git"
},
"bugs": {
"url": "https://github.com/dev-protocol/protocol/issues"
},
"homepage": "https://github.com/dev-protocol/protocol#readme"
}