-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.31 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
{
"name": "@collabland/nfthack2021",
"version": "0.0.1",
"description": "CollabLand NFTHack 2021",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:solidity && lb-tsc -b",
"build:watch": "lb-tsc -b --watch",
"build:full": "npm ci && npm run rebuild && npm run test:dev",
"pretest": "npm run build",
"test": "hardhat test",
"rebuild": "npm run clean && npm run build",
"clean": "lb-clean src/types dist *.tsbuildinfo .eslintcache",
"build:solidity": "hardhat compile && node fix-typechain.js",
"start:hardhat": "hardhat node",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\" \"**/*.md\" \"**/*.sol\" --loglevel warn",
"prettier:check": "npm run prettier:cli -- --check",
"prettier:fix": "npm run prettier:cli -- --write",
"start": "echo Please run hardhat node with 'npm run start:hardhat'. && node dist/cli demo"
},
"repository": {
"type": "git",
"url": "git@github.com:abridged/nfthack-2021.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"files": [
"README.md",
"src",
"dist",
"!*/__solidity_tests__"
],
"dependencies": {
"@collabland/common": "^0.7.0",
"@oclif/command": "^1.6.1",
"@oclif/config": "^1.15.1",
"@oclif/errors": "^1.3.4",
"@oclif/plugin-help": "^3.0.1",
"@openzeppelin/contracts": "^3.4.0-solc-0.7",
"cli-ux": "^5.5.1",
"ethers": "^5.0.31",
"inquirer": "^7.3.3",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^6.3.0",
"@loopback/eslint-config": "^10.1.0",
"@loopback/testlab": "^3.3.0",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@oclif/dev-cli": "^1.22.2",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@typechain/ethers-v5": "^6.0.3",
"@typechain/hardhat": "^1.0.1",
"@types/inquirer": "^7.3.1",
"@types/mocha": "^8.2.1",
"@types/node": "^10.17.55",
"hardhat": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"source-map-support": "^0.5.19",
"truffle-hdwallet-provider": "^1.0.17",
"typechain": "^4.0.3",
"typescript": "~4.2.3"
},
"oclif": {
"commands": "./dist/commands"
},
"copyright.owner": "Abridged, Inc.",
"author": "Abridged, Inc."
}