-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "simple-voting-sc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"testFormat": "npx prettier test/*.test.ts --write",
"checkSol": "solhint contracts/*.sol contracts/**/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alison024/simple-voting-sc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Alison024/simple-voting-sc/issues"
},
"homepage": "https://github.com/Alison024/simple-voting-sc#readme",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@swisstronik/swisstronik.js": "^1.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.2",
"chai": "^4.3.10",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"ethers": "^6.7.1",
"hardhat": "^2.17.4",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"dotenv": "^16.3.1"
}
}