forked from if-x/drc-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.45 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
66
67
68
69
{
"name": "digital-reserve-v2",
"version": "1.0.0",
"description": "Digital Reserve (DR) smart contract for DRC token holders to get easy exposure to a basket of store of value (SoV) assets.",
"main": "truffle-config.js",
"keywords": [
"digital-reserve-currency",
"drc",
"store-of-value",
"sov"
],
"directories": {
"test": "test"
},
"scripts": {
"airdrop": "yarn compile-tools && truffle exec local-tools/ropsten-airdrop.js --network ropsten",
"compile": "truffle compile",
"compile-ts": "tsc -p ./tsconfig.migrate.json --outDir ./migrations",
"compile-tools": "tsc -p ./tsconfig.tools.json --outDir ./local-tools",
"etherscan-verify": "truffle run verify DRCVault",
"etherscan-verify:main": "yarn etherscan-verify --network main",
"etherscan-verify:ropsten": "yarn etherscan-verify --network ropsten",
"generate-types": "typechain --target=truffle-v5 'build/contracts/*.json'",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "npm run lint -- --fix",
"migrate": "yarn compile-ts && truffle migrate",
"migrate:main": "yarn migrate --network main",
"migrate:ropsten": "yarn migrate --network ropsten",
"postinstall": "yarn compile && yarn generate-types",
"prettier": "prettier --write 'contracts/**/*.sol'",
"start-server": "node server.js",
"test": "yarn compile-ts && truffle test",
"test:ropsten": "yarn test --network ropsten"
},
"author": "If.x",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@openzeppelin/contracts": "4.1.0"
},
"devDependencies": {
"@truffle/hdwallet-provider": "1.2.1",
"@typechain/truffle-v5": "^5.0.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.44",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"dotenv": "^9.0.2",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"ganache-cli": "^6.12.2",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "1.0.0-beta.10",
"truffle": "^5.3.5",
"truffle-flattener": "^1.5.0",
"truffle-plugin-verify": "^0.5.8",
"ts-node": "^9.1.1",
"typechain": "^5.0.0",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/if-x/digital-reserve-v2"
}
}