-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 3.4 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "eea-trusted-token",
"version": "1.0.0",
"description": "EEA Trusted Token ",
"main": "truffle-config.js",
"engines": {
"node": "^10.16.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EntEthAlliance/Trusted-Token.git"
},
"author": "Antonina Norair & Mike Alonso",
"license": "ISC",
"bugs": {
"url": "https://github.com/EntEthAlliance/Trusted-Token/issues"
},
"homepage": "https://github.com/EntEthAlliance/Trusted-Token#readme",
"scripts": {
"build": "rm -rf node_modules/*/.git/",
"postinstall": "node ./tools/hashChecker.js",
"start": "yarn run develop",
"compile": "truffle compile --all",
"migrate": "yarn run migrate-dev",
"migrate-dev": "truffle migrate --reset --compile-all --network develop",
"test": "yarn run test-dev",
"test-runner-dev": "babel-node ./tools/test-procedure.js",
"test-dev": "truffle test --network develop",
"migrate-ropsten": "truffle migrate --reset -f 2 --compile-all --network ropsten",
"migrate-rinkeby": "truffle migrate --reset -f 2 --compile-all --network rinkeby",
"migrate-kovan": "truffle migrate --reset -f 2 --compile-all --network kovan",
"test-ropsten": "truffle test --compile-all --network ropsten",
"test-rinkeby": "truffle test --compile-all --network rinkeby",
"faucet": "babel-node --ignore 'node_modules/(?!@validitylabs/js-utils)' tools/leechFaucet.js",
"coverage": "solidity-coverage",
"dev": "truffle develop",
"console": "truffle console --network kaleido",
"geth": "geth --datadir geth-db --networkid 4447 --ws --wsport 8546 --wsorigins '' --rpc --rpcport 8545 --rpccorsdomain '' --nodiscover console",
"testrpc": "truffle develop --log",
"debug": "truffle debug --network develop",
"jsdoc": "jsdoc -c jsdoc.cnf.json",
"clean": "shx rm -fr db geth-db dist build bin coverage coverage.json",
"reset": "npm run clean; shx rm -fr node_modules",
"upgrade": "yarn run reset; yarn upgrade",
"flatten": "truffle-flattener"
},
"dependencies": {
"chalk": "^2.4.1",
"moment": "^2.29.4",
"openzeppelin-solidity": "^2.3.0",
"truffle-contract": "^4.0.29",
"web3": "^1.2.1",
"winston": "^3.2.0",
"crypto-js": "^3.1.8",
"utf8": "^3.0.0",
"xhr2": "^0.1.4",
"xmlhttprequest": "^1.8.0",
"bignumber.js": "git+https://github.com/frozeman/bignumber.js-nolookahead.git#57692b3ecfc98bbdd6b3a516cb2353652ea49934"
},
"devDependencies": {
"dotenv": "^8.0.0",
"ethr-did-registry": "0.0.3",
"openzeppelin-test-helpers": "^0.4.0",
"retry": "^0.12.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"colors": "^1.3.2",
"eslint": "^5.16.0",
"eslint-config-xo": "^0.25.0",
"eslint-plugin-babel": "^5.2.1",
"ganache-core": "^2.7.0",
"jsdoc": "^3.6.3",
"keythereum": "^1.0.4",
"shelljs": "^0.8.5",
"shx": "^0.3.2",
"solc": "0.5.11",
"solcpiler": "^1.0.0-beta.9",
"solidity-coverage": "^0.6.4",
"superagent": "^5.1.0",
"truffle": "^5.0.32",
"truffle-hdwallet-provider": "1.0.16",
"truffle-security": "1.5.5",
"truffle-flattener": "1.4.2"
},
"optionalDevDependencies": {
"fsevents": "*"
}
}