-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
79 lines (79 loc) · 2.37 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
{
"name": "@tokenysolutions/t-rex",
"version": "4.1.6",
"description": "A fully compliant environment for the issuance and use of tokenized securities.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"files": [
"artifacts",
"contracts",
"index.js",
"index.d.ts",
"!contract/_testContracts",
"!artifacts/contracts/_testContracts",
"!contract/Migrations.sol",
"!artifacts/contracts/Migrations.sol",
"!artifacts/build-info"
],
"scripts": {
"build": "hardhat compile",
"flatten": "node scripts/flatten.js",
"coverage": "hardhat coverage",
"test": "hardhat test",
"lint:ts": "eslint \"test/**/*.ts\"",
"lint:ts-fix": "eslint \"test/**/*.ts\" --fix",
"lint": "npm run lint:sol",
"lint:sol": "solhint \"contracts/**/*.sol\"",
"docs": "hardhat dodoc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TokenySolutions/T-REX.git"
},
"author": "Tokeny Solutions",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/TokenySolutions/T-REX/issues"
},
"homepage": "https://github.com/TokenySolutions/T-REX#README",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@onchain-id/solidity": "^2.0.0",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@xyrusworx/hardhat-solidity-json": "^1.0.2",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.1",
"hardhat": "^2.14.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"glob": "^10.2.6",
"fs-extra": "^11.1.1",
"@typescript-eslint/parser": "^6.7.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint-import-resolver-typescript": "^3.6.1",
"eth-gas-reporter": "^0.2.27"
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}