-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.4 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": "@tableland/hardhat-js-template",
"version": "0.0.0",
"description": "Hardhat JavaScript starter template for @tableland applications",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean && rm -rf artifacts && rm -rf cache && rm -rf coverage && rm -f coverage.json",
"up": "npm install && npm run build && hardhat node --network local-tableland",
"lt": "hardhat node --network local-tableland",
"deploy": "hardhat run scripts/deploy.js --network",
"deploy:up": "hardhat run scripts/deploy.js --network localhost",
"deploy:local": "hardhat run scripts/deploy.js --network local-tableland",
"test": "hardhat coverage && istanbul check-coverage ./coverage.json --statements 100 --branches 95 --functions 100 --lines 100",
"test:gas": "REPORT_GAS=true hardhat test",
"lint:js": "eslint '**/*.{js,ts}'",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint": "npm run lint:ts && npm run lint:sol",
"lint:fix": "npm run lint:js -- --fix && npm run lint:sol -- --fix",
"prettier": "prettier '**/*.{js,ts,json,sol,md}' --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"verify": "hardhat run scripts/verify.js --network"
},
"keywords": [
"tableland",
"hardhat",
"sql"
],
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"@tableland/hardhat": "^0.0.9",
"@tableland/local": "^3.0.0",
"@tableland/sdk": "^7.0.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.3.1",
"erc721a-upgradeable": "^4.2.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^17.1.0",
"hardhat": "^2.22.3",
"hardhat-dependency-compiler": "^1.1.4",
"hardhat-gas-reporter": "^1.0.10",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4",
"solidity-coverage": "^0.8.12"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.6",
"@tableland/evm": "^6.1.0",
"hardhat-contract-sizer": "^2.10.0"
}
}