-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
81 lines (81 loc) · 2.53 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
{
"name": "@collabland/staking-contracts",
"version": "1.8.0",
"description": "Staking contracts supported by Collab.Land",
"keywords": [
"collabland",
"Collab.Land",
"staking"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "npm run build:solidity && lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"rebuild": "npm run clean && npm run build",
"clean": "hardhat clean && lb-clean src/types dist *.tsbuildinfo .eslintcache",
"build:solidity": "hardhat compile",
"build:package": "hardhat compile",
"postversion": "git push && git push --tags",
"release": "npm run rebuild && npm version minor -m \"chore: update version to %s\" && npm publish"
},
"repository": {
"type": "git",
"url": "[email protected]:abridged/collabland-staking-contracts.git"
},
"publishConfig": {
"access": "public"
},
"author": "Abridged, Inc.",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__",
"!*/__examples__"
],
"dependencies": {
"ethcall": "^4.8.5",
"tslib": "^2.0.0"
},
"devDependencies": {
"@collabland/chain": "^0.39.0",
"@collabland/common": "^0.51.0",
"@loopback/build": "^10.1.4",
"@loopback/core": "^5.1.4",
"@loopback/eslint-config": "^14.0.5",
"@loopback/repository": "^6.1.4",
"@loopback/testlab": "^6.1.4",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@collabland/typechain-ethers-v5": "^11.2.0",
"@collabland/typechain-hardhat": "^9.2.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^16.18.68",
"eslint": "^8.51.0",
"ethers": "^5.7.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"hardhat": "^2.19.4",
"@collabland/typechain": "^8.4.0",
"typescript": "~5.4.0"
},
"license": "MIT",
"copyright.owner": "Abridged, Inc."
}