-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "witnet-twitter-oracle",
"version": "0.1.0",
"description": "Links twitter users to ethereum addresses and gives rewards based on activity",
"author": "Rick",
"license": "MIT",
"private": false,
"scripts": {
"postinstall": "chmod +x scripts/postinstall.sh && scripts/postinstall.sh",
"compile-contracts": "npx truffle compile",
"compile-requests": "npx rad2sol --disable-requests-lists",
"compile": "npm run postinstall && npm run compile-contracts",
"test": "npx truffle test",
"host": "npx live-server src"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.4.0",
"live-server": "^1.2.1",
"prettier": "^2.3.2",
"truffle-flattener": "^1.5.0",
"witnet-ethereum-bridge": "^0.4.2",
"witnet-requests": "^0.5.2"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.0.0",
"solidity-coverage": "^0.7.5",
"truffle": "^5.1.28",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.11"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix --cache --cache-location 'node_modules/.cache/.eslintcache'",
"*.{js,ts,md}": "pretty-quick --staged"
}
}