-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.48 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "hackapay",
"version": "1.0.0",
"description": "hackapay",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"build": "webpack --mode production",
"start": "webpack-dev-server --open --mode development",
"deploy:ropsten": "truffle deploy --network ropsten --reset",
"deploy:kovan": "truffle deploy --network kovan --reset",
"coverage": "npx solidity-coverage",
"verify-security": "truffle run verify"
},
"keywords": [],
"author": "github.com/fodisi",
"license": "",
"bugs": {
"url": "https://github.com/fodisi/hackapay/issues"
},
"homepage": "https://github.com/fodisi/hackapay#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"ganache-cli": "^6.4.5",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"openzeppelin-test-helpers": "^0.4.2",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "^1.0.0-alpha.27",
"solhint": "^2.1.2",
"solhint-plugin-prettier": "0.0.3",
"solidity-coverage": "^0.6.3",
"truffle-security": "^1.5.2",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"bignumber.js": "^9.0.0",
"openzeppelin-solidity": "^2.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"prop-types": "^15.7.2",
"rimble-ui": "^0.9.6",
"styled-components": "^4.3.2",
"truffle-hdwallet-provider": "^1.0.15",
"web3": "^1.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,css,sass,yaml,yml,json,md}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.sol": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=10.0.0"
}
}