-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.42 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
61
62
63
64
65
{
"name": "dms-token-contracts",
"version": "1.0.0",
"description": "The smart contract source code of DMS Coin Project",
"files": [
"**/*.sol"
],
"scripts": {
"test": "hardhat test",
"clean": "hardhat clean",
"build": "hardhat compile",
"deploy:main_chain_devnet": "hardhat run deploy/main_chain_devnet/deploy.ts --network main_chain_devnet",
"deploy:side_chain_devnet": "hardhat run deploy/side_chain_devnet/deploy.ts --network side_chain_devnet",
"lint": "tslint --config tslint.json \\\"{src,test}/**/*.ts\\\"",
"lint-fix": "tslint --fix --config tslint.json \\\"{src,test}/**/*.ts\\\"",
"formatting:check": "prettier '**/*.{json,sol,ts,js,md}' -c",
"formatting:write": "prettier '**/*.{json,sol,ts,js,md}' --write",
"test:DelegatedTransfer": "hardhat test test/DelegatedTransfer.test.ts",
"test:MultiSigToken": "hardhat test test/MultiSigToken.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosagora/dms-token-contracts.git"
},
"author": "ACC",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/bosagora/dms-token-contracts/issues"
},
"homepage": "https://github.com/bosagora/dms-token-contracts#readme",
"devDependencies": {
"@ethersproject/constants": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.0",
"@types/node": "^12.20.43",
"assert": "^2.0.0",
"chai": "^4.3.7",
"chai-http": "^4.3.7",
"dotenv": "^10.0.0",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.0",
"hardhat": "^2.12.7",
"hardhat-gas-reporter": "^1.0.7",
"mocha": "^10.1.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.1.1",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "^0.6.0-beta.35",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typechain": "^8.1.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@openzeppelin/contracts": "~4.9.5",
"loyalty-tokens": "~2.1.1",
"multisig-wallet-contracts": "~2.0.0"
}
}