-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 KB
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
{
"name": "tsb-technical-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"rebuild": "npm run clean && npm run compile",
"start": "npx hardhat node",
"solhint": "solhint 'contracts/**/*.sol'",
"solhint-fix": "solhint 'contracts/**/*.sol' --fix",
"lint-ts": "npx eslint .",
"lint-ts-fix": "npx eslint . --fix",
"prettier": "npx prettier --check .",
"prettier-write": "npx prettier --write .",
"format": "npm run solhint-fix && npm run lint-ts-fix && npm run prettier-write",
"test": "npx hardhat test tests/tests.ts",
"coverage": "npx hardhat coverage --testfiles tests/tests.ts",
"help": "npx hardhat help"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mortelli/tsb-technical-test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mortelli/tsb-technical-test/issues"
},
"homepage": "https://github.com/mortelli/tsb-technical-test#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"hardhat": "^2.11.1",
"prettier": "2.7.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3"
}
}