forked from tablelandnetwork/evm-tableland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.9 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
{
"name": "@tableland/evm",
"version": "2.1.0",
"description": "Tableland Tables EVM contracts and client components",
"engines": {
"node": ">=14.0.0"
},
"main": "typechain-types/index.js",
"types": "typechain-types/index.d.ts",
"files": [
"proxies.*",
"contracts",
"typechain-types/**/*.js?(.map)",
"typechain-types/**/*.d.ts"
],
"exports": {
".": "./typechain-types/index.js",
"./proxies.js": "./proxies.js",
"./contracts/": "./contracts/"
},
"scripts": {
"build": "npx tsc -p ./tsconfig.build.json",
"clean": "rm -rf artifacts && rm -rf typechain-types && rm -rf cache && rm -rf coverage && rm -f coverage.json",
"up": "npm install && npx hardhat compile && npm run build && hardhat node",
"test": "hardhat coverage && istanbul check-coverage ./coverage.json --statements 100 --branches 96 --functions 100 --lines 100",
"lint": "eslint '**/*.{js,ts}'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{ts,json,sol,md}' --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tablelandnetwork/evm-tableland.git"
},
"keywords": [
"tableland",
"evm",
"sql"
],
"license": "MIT AND Apache-2.0",
"bugs": {
"url": "https://github.com/tablelandnetwork/evm-tableland/issues"
},
"homepage": "https://github.com/tablelandnetwork/evm-tableland#readme",
"dependencies": {},
"devDependencies": {
"@ethersproject/providers": "^5.6.8",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.1",
"erc721a": "^4.2.1",
"erc721a-upgradeable": "^4.2.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.9.9",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.0-rc.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
}
}