-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "web3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf artifacts/ cache/ dist",
"compile": "hardhat compile",
"test": "hardhat test",
"node": "hardhat node",
"deploy": "npm run compile; hardhat run --network localhost",
"start": "http-server -c-1 -p 6969",
"dev": "concurrently -c 'gray,green,blue' webpack npm:node npm:start"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.0",
"chai": "^4.3.4",
"concurrently": "^6.5.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.8.0",
"hardhat-gas-reporter": "^1.0.6",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"yarn": "^1.22.17"
}
}