-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"version": "0.0.0",
"description": "Project Golden Teeth Smart Contracts",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test --typecheck",
"lint": "npx prettier --check '**/*' && npx solhint 'contracts/**/*.sol' && npx eslint '**/*.{js,ts}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curg/gt-contracts.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts"
],
"author": "Project Golden Teeth",
"license": "MIT",
"bugs": {
"url": "https://github.com/curg/gt-contracts/issues"
},
"homepage": "https://github.com/curg/gt-contracts#readme",
"dependencies": {
"@curg/gt-contracts": "file:contracts",
"@curg/wyvern-v3": "^3.1.0-2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.14.1",
"solhint": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3"
}
}