-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.07 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
{
"name": "@devprotocol/protocol",
"version": "3.4.1",
"description": "Securitize for Internet assets",
"scripts": {
"test": "truffle test",
"generate": "truffle compile && typechain --target truffle './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' 'scripts/**/*.js' && yarn generate",
"prepare": "husky install"
},
"files": [
"contracts/interface"
],
"author": "aggre",
"license": "MPL-2.0",
"devDependencies": {
"@devprotocol/util-ts": "2.2.1",
"@truffle/hdwallet-provider": "2.1.0",
"@types/bent": "7.3.2",
"@types/dotenv": "8.2.0",
"@types/node": "16.18.0",
"@types/shelljs": "0.8.11",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"bent": "7.3.12",
"bignumber.js": "9.1.0",
"del-cli": "4.0.1",
"dotenv": "16.0.3",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-xo": "0.42.0",
"eslint-config-xo-typescript": "0.50.0",
"husky": "7.0.4",
"p-queue": "7.3.0",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-dev.24",
"solhint": "3.3.7",
"truffle": "5.4.29",
"truffle-plugin-verify": "0.5.31",
"truffle-typings": "1.0.8",
"ts-generator": "0.1.1",
"ts-node": "10.9.1",
"typechain": "4.0.3",
"typechain-target-truffle": "1.0.2",
"typescript": "4.8.4",
"web3": "1.7.4"
},
"dependencies": {
"@devprotocol/i-s-tokens": "2.0.1",
"@openzeppelin/contracts": "2.5.1"
},
"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"
}