12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "typescript-eth-solidity-hardhat-template",
- "version": "1.0.0",
- "description": "",
- "scripts": {
- "test": "hardhat test",
- "test-integration": "hardhat test test/integration/APIConsumer_int_test.js --network kovan; hardhat test test/integration/RandomNumberConsumer_int_test.js --network kovan",
- "lint:fix": "prettier --write 'scripts/**/*.{js,ts}' 'test/**/*.{js,ts}' 'tasks/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
- "lint": "tslint --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
- "format": "prettier --check \"**/*.{ts,js,sol}\"",
- "format:fix": "prettier --write \"**/*.{ts,js,sol}\"",
- "build": "tsc",
- "watch": "tsc -w"
- },
- "files": [
- "dist/src/",
- "src/",
- "LICENSE",
- "README.md"
- ],
- "author": "Kristjan Kosic <kristjan@protokol.com>",
- "license": "MIT",
- "devDependencies": {
- "@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.10",
- "@nomiclabs/hardhat-etherscan": "^2.1.4",
- "@nomiclabs/hardhat-web3": "^2.0.0",
- "@openzeppelin/contracts": "^4.2.0",
- "@pinata/sdk": "^1.1.23",
- "@typechain/ethers-v5": "^7.0.1",
- "@typechain/hardhat": "^2.2.0",
- "@types/chai": "^4.2.21",
- "@types/mocha": "^9.0.0",
- "@types/node": "^16.4.10",
- "babel-eslint": "^10.1.0",
- "chai": "^4.3.4",
- "chai-bignumber": "^3.0.0",
- "chai-ethers": "^0.0.1",
- "chai-bn": "^0.3.0",
- "dotenv": "^10.0.0",
- "ethers": "^5.4.3",
- "hardhat": "^2.5.0",
- "hardhat-deploy": "^0.8.11",
- "mocha-skip-if": "^0.0.3",
- "prettier": "^2.3.2",
- "prettier-plugin-solidity": "^1.0.0-beta.17",
- "solhint": "^3.3.6",
- "solhint-plugin-prettier": "^0.0.5",
- "transform": "^1.1.2",
- "ts-generator": "^0.1.1",
- "ts-node": "^10.1.0",
- "tslint": "^5.20.1",
- "tslint-config-prettier": "^1.18.0",
- "tslint-plugin-prettier": "^2.3.0",
- "typechain": "^5.1.2",
- "typescript": "^4.3.5",
- "web3": "^1.5.0"
- },
- "mocha": {
- "timeout": 10000000
- }
- }
|