This repository was archived by the owner on Oct 25, 2022. It is now read-only.
forked from sidd-tech/Truffle-Infura
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "polygon-box",
"version": "1.0.0",
"description": "A sample Truffle project that allows developers to deploy to the Polygon Matic PoS chain",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"test:polygon": "truffle test --config=truffle-config.polygon.js --network=$npm_config_network",
"compile:polygon": "truffle compile --config=truffle-config.polygon.js",
"migrate:polygon": "truffle migrate --config=truffle-config.polygon.js --network=$npm_config_network",
"dev" : "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/truffle-box/polygon-box.git"
},
"keywords": [
"Matic",
"Polygon",
"Ethereum",
"Truffle",
"dapp"
],
"author": "Faina Shalts",
"license": "MIT",
"bugs": {
"url": "https://github.com/truffle-box/polygon-box/issues"
},
"homepage": "https://github.com/truffle-box/polygon-box#readme",
"devDependencies": {
"@maticnetwork/maticjs": "^2.0.40",
"@truffle/hdwallet-provider": "^1.7.0",
"dotenv": "^9.0.2",
"nodemon": "^2.0.16"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"ethers": "^5.6.7",
"express": "^4.18.1"
}
}