forked from truffle-box/polygon-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"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"
},
"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.4.2",
"dotenv": "^9.0.0"
},
"dependencies": {}
}