forked from ProxeusApp/proxeus-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·83 lines (83 loc) · 3.14 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "proxeus",
"version": "1.0.1",
"description": "proxeus smart contracts",
"author": "Validity Labs <[email protected]>",
"main": "./tools/server/index.js",
"private": true,
"license": "GPLv3",
"engines": {
"node": ">14"
},
"scripts": {
"dev": "npx truffle develop",
"lint": "npx solhint --formatter table contracts/**/*.sol",
"compile": "npx cross-env NODE_ENV=develop cross-env TASK=compile node ./tools/server/index",
"migrate": "npx cross-env NODE_ENV=develop cross-env TASK=migrate node ./tools/server/index",
"deploy-goerli:infura": "npx cross-env NETWORK=goerliInfura truffle migrate --reset --compile-all --network goerliInfura",
"deploy-sepolia:infura": "npx cross-env NETWORK=sepoliaInfura truffle migrate --reset --compile-all --network sepoliaInfura",
"deploy-mumbai:infura": "npx cross-env NETWORK=mumbaiInfura truffle migrate --reset --compile-all --network mumbaiInfura",
"deploy-polygon:infura": "npx cross-env NETWORK=polygonInfura truffle migrate --reset --compile-all --network polygonInfura",
"deploy-mainnet:infura": "npx cross-env NETWORK=mainnetInfura truffle migrate --reset --compile-all --network mainnetInfura",
"deploy-mainnet": "npx cross-env NODE_ENV=mainnet cross-env TASK=deploy node ./tools/server/index",
"bundle": "npx cross-env TASK=bundle node ./tools/server/index",
"test": "yarn lint && npx cross-env NODE_ENV=develop cross-env TASK=test node ./tools/server/index",
"coverage": "npx cross-env NODE_ENV=develop cross-env TASK=coverage node ./tools/server/index",
"geth-mainnet": "geth --syncmode \"fast\" --rpc",
"console": "npx truffle console --network develop",
"testrpc": "npx cross-env NODE_ENV=develop cross-env TASK=testrpc node ./tools/server/index",
"debug": "npx truffle debug --network develop",
"jsdoc": "npx jsdoc -c config/jsdoc.json",
"clean": "npx shx rm -fr docs db dist build bin coverage",
"reset": "npx yarn run clean && npx shx rm -fr node_modules",
"update": "yarn upgrade -L",
"postinstall": "node ./tools/hashChecker.js"
},
"dependencies": {
"@openzeppelin/contracts": "^2",
"@truffle/hdwallet-provider": "^2.1.11",
"ethers": "^5",
"moment": "^2",
"truffle": "^5.9.0",
"truffle-assertions": "^0.9",
"truffle-flattener": "^1",
"web3": "^1",
"winston": "^3"
},
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "^7",
"@babel/node": "^7",
"@babel/preset-env": "*",
"babel-core": "^7.0.0-bridge.0",
"chai": "*",
"chai-as-promised": "*",
"chai-bignumber": "*",
"colors": "*",
"core-js": "^3",
"cross-env": "*",
"eslint": "*",
"eslint-config-xo": "*",
"eth-gas-reporter": "*",
"ethereumjs-abi": "*",
"ganache-core": "*",
"jsdoc": "*",
"keythereum": "*",
"prompt": "*",
"shelljs": "*",
"shx": "*",
"solc": "*",
"solhint": "*",
"solidity-coverage": "0.7.22",
"superagent": "*",
"tree-kill": "*",
"truffle-plugin-verify": "0.6.1"
},
"optionalDevDependencies": {
"fsevents": "*",
"windows-build-tools": "*"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
}
}