-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.5 KB
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
{
"name": "witnet-youtube-viewcount-oracle",
"version": "0.1.0",
"description": "A totally decentralized YouTube viewcount oracle",
"author": "Shronk",
"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",
"clean": "scripts/clean.sh",
"migrate": "scripts/migrate.sh && npm run verify",
"verify": "npx truffle run verify --network ethereum.goerli Monetizer",
"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",
"witnet-ethereum-bridge": "^0.4.2",
"witnet-requests": "^0.7.0",
"witnet-solidity-bridge": "^0.5.1"
},
"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",
"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"
}
}