-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "treejer-contracts",
"version": "1.0.0",
"description": "Treejer Smart Contracts",
"main": "package.json",
"directories": {
"test": "test"
},
"engines": {
"node": ">=13.0.0"
},
"devDependencies": {
"@opengsn/contracts": "2.2.6",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"@openzeppelin/test-helpers": "0.5.15",
"@openzeppelin/truffle-upgrades": "1.14.0",
"@truffle/hdwallet-provider": "2.0.3",
"big.js": "6.1.1",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.1",
"dotenv": "16.0.0",
"eth-gas-reporter": "0.2.24",
"ethereumjs-units": "0.2.0",
"ganache": "7.0.3",
"husky": "7.0.4",
"istanbul-combine": "0.3.0",
"lint-staged": "12.3.5",
"mocha": "9.2.1",
"nc": "1.0.3",
"prettier": "2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "3.3.7",
"solidity-coverage": "0.7.17",
"truffle": "5.5.4",
"truffle-assertions": "0.9.2"
},
"scripts": {
"test": "bash scripts/run_test.sh",
"gas_reporter": "bash scripts/run_test_w_gas_reporter.sh",
"ganache": "node_modules/.bin/ganache --networkId 1337 -l 20000000",
"gsn": "node_modules/.bin/gsn start",
"coverage": "bash scripts/coverage.sh",
"deploy": "npx truffle deploy",
"prettier": "npx prettier --write .",
"lint:prettier": "npx prettier --check ."
},
"lint-staged": {
"**/*": "npx prettier --check ."
},
"keywords": [
"Treejer",
"SmartContract",
"Solidity",
"Token",
"ERC721",
"ERC20"
],
"author": "[email protected]",
"license": "GPL-3.0-or-later"
}