forked from shayan-taheri/repository-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "@devprotocol/protocol",
"version": "3.0.7",
"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,js,json,md,yml}'",
"prepack": "yarn build",
"build": "tsc -p tsconfig.build.json",
"prebuild": "rimraf ['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": "1.2.6",
"@types/bent": "7.3.2",
"@types/dotenv": "8.2.0",
"@types/node": "13.13.50",
"@types/shelljs": "0.8.8",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"bent": "7.3.12",
"bignumber.js": "9.0.1",
"dotenv": "8.2.0",
"eslint": "7.24.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-xo": "0.36.0",
"eslint-config-xo-typescript": "0.37.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "6.0.0",
"p-queue": "7.1.0",
"prettier": "2.2.1",
"prettier-plugin-solidity": "1.0.0-beta.9",
"rimraf": "3.0.2",
"solhint": "3.3.4",
"truffle": "5.3.2",
"truffle-typings": "1.0.8",
"ts-generator": "0.1.1",
"ts-node": "9.1.1",
"typechain": "4.0.3",
"typechain-target-truffle": "1.0.2",
"typescript": "4.2.4",
"web3": "1.3.5"
},
"dependencies": {
"@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"
}