-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "blocksafe",
"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"
],
"contributors": [
"Arjun Prashanth <arjunp0710@gmail.com>",
"Kaushal Nilesh Bharathe",
"Muhesh Kumar",
"Gaurav"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/truffle-box/polygon-box/issues"
},
"homepage": "https://github.com/truffle-box/polygon-box#readme",
"dependencies": {
"@crustio/type-definitions": "^1.2.0",
"@polkadot/api": "^7.15.1",
"@polkadot/keyring": "^9.0.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"ethers": "^5.6.2",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"ipfs-http-client": "^56.0.2",
"it-all": "^1.0.6",
"web3": "^1.7.3",
"web3-eth-contract": "^1.7.3"
},
"devDependencies": {
"@maticnetwork/maticjs": "^2.0.40",
"@truffle/hdwallet-provider": "^2.0.5",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"sass": "^1.50.0"
}
}