forked from tablelandnetwork/evm-tableland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.54 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@tableland/evm",
"version": "0.0.0",
"description": "Tableland Tables EVM contracts and client components",
"engines": {
"node": ">=16.0.0"
},
"main": "typechain-types/index.js",
"types": "typechain-types/index.d.ts",
"files": [
"network.*",
"hardhat.config.*",
"contracts",
"typechain-types/**/*.js?(.map)",
"typechain-types/**/*.ts",
"scripts"
],
"exports": {
".": "./typechain-types/index.js",
"./network": "./network.js",
"./network.js": "./network.js",
"./contracts/": "./contracts/",
"./scripts/deploy.js": "./scripts/deploy.js"
},
"scripts": {
"build": "hardhat compile && npx tsc -p ./tsconfig.build.json",
"clean": "hardhat clean && rm -rf artifacts && rm -rf typechain-types && rm -rf cache && rm -rf coverage && rm -f coverage.json && rm -f network.js* && rm -f network.d* && rm -f scripts/*.js* && rm -f scripts/*.d* && rm -f hardhat.config.js* && rm -f hardhat.config.d*",
"up": "npm install && npx hardhat compile && npm run build && hardhat node",
"test": "npm run test:e2e && npm run test:unit",
"test:unit": "hardhat coverage --testfiles \"test/unit\" && istanbul check-coverage ./coverage.json --statements 100 --branches 100 --functions 100 --lines 100",
"test:e2e": "npm run build && node --experimental-fetch ./node_modules/mocha/bin/mocha.js --exit test/integration",
"test:gas": "REPORT_GAS=true hardhat test",
"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",
"prepublishOnly": "npm run build"
},
"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",
"devDependencies": {
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts-upgradeable": "4.8.3",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@tableland/local": "^1.1.0",
"@typechain/ethers-v5": "^10.2.0",
"@tableland/sdk": "^4.0.2",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"erc721a": "^4.2.3",
"erc721a-upgradeable": "^4.2.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^5.7.2",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@openzeppelin/contracts": "4.8.3"
}
}