-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "ParsiqTokenBSC",
"version": "2.0.0",
"description": "Parsiq smart-contracts",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"test": "truffle test",
"start:ganache": "node scripts/run.js",
"test:sol": "truffle test",
"migrate": "truffle migrate --network=development",
"deploy": "truffle migrate --network=ropsten",
"solhint": "solhint contracts/**/*.sol",
"flat": "truffle-flattener contracts/ParsiqToken.sol"
},
"author": "Blockvis",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^3.4.2",
"csvtojson": "^2.0.10",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eth-permit": "^0.1.10",
"ethereumjs-util": "^7.0.10",
"ganache-cli": "^6.12.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"truffle-privatekey-provider": "^0.1.0",
"web3": "^1.3.5"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.1.1",
"ganache-core": "^2.13.2",
"scrypt": "^6.0.3",
"solhint": "^3.3.1",
"solhint-plugin-prettier": "^0.0.5",
"truffle": "^5.3.4",
"truffle-flattener": "^1.5.0",
"truffle-hdwallet-provider": "^1.0.17"
}
}