-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 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
{
"name": "@enabledao/enable-contracts",
"version": "0.2.1",
"description": "Borderless peer-to-peer loans with social attestation",
"main": "truffle-config.js",
"scripts": {
"compile": "truffle compile --all",
"deploy:contracts": "sh ./scripts/deploy/oz.deploy.sh",
"eslint": "./node_modules/.bin/eslint ./",
"eslint:fix": "./node_modules/.bin/eslint ./ --fix",
"oz:create": "oz create",
"oz:publish": "oz publish",
"oz:push": "oz push",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"postinstall": "npm run version",
"solhint": "./node_modules/.bin/solhint contracts/**/*.sol",
"solium": "./node_modules/.bin/solium -d contracts/",
"solium:fix": "./node_modules/.bin/solium -d contracts/ --fix",
"test": "oz publish --network development && oz push --network development && truffle test",
"version": "node ./scripts/version/on-version.js && git add ."
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:solidity"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/enabledao/enable-contracts.git"
},
"keywords": [
"zeppelinos",
"openzeppelin",
"truffle",
"react"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/enabledao/enable-contracts/issues"
},
"homepage": "https://github.com/onggunhao/enable#readme",
"dependencies": {
"@0x/sol-trace": "^2.0.13",
"@babel/polyfill": "^7.4.4",
"@babel/register": "^7.4.4",
"dotenv": "^6.2.0",
"minimist": "^1.2.0",
"openzeppelin-eth": "2.2.0",
"truffle-hdwallet-provider": "^1.0.3",
"zos-lib": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@openzeppelin/cli": "^2.5.1",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eth-gas-reporter": "^0.2.4",
"ethlint": "^1.2.4",
"husky": "^3.0.0",
"moment": "^2.24.0",
"openzeppelin-test-helpers": "^0.4.0",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "^1.0.0-alpha.27",
"solhint": "^2.1.0",
"solhint-plugin-prettier": "0.0.3",
"solidity-coverage": "^0.5.11",
"truffle": "^5.0.26",
"web3": "^1.2.1"
}
}