-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "eventstore-eth",
"version": "0.1.0",
"description": "Event Sourced Decentralized Application Development.",
"main": "src/index.js",
"files": [
"contracts",
"src"
],
"scripts": {
"start": "npm test",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 react-scripts test --coverage --forceExit",
"test:report": "codecov && rm -rf ./coverage",
"truffle:test": "NODE_TLS_REJECT_UNAUTHORIZED=0 truffle test",
"truffle:migrate": "NODE_TLS_REJECT_UNAUTHORIZED=0 truffle migrate --network development",
"truffle:coverage": "./node_modules/.bin/solidity-coverage",
"truffle:coverage:report": "cat coverage/lcov.info | coveralls",
"eject": "react-scripts eject",
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/eolszewski/eventstore-eth.git"
},
"keywords": [
"ethereum",
"ipfs",
"eventstore",
"event-sourcing"
],
"authors": [
"Eric Olszewski <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/eolszewski/eventstore-eth/issues"
},
"homepage": "https://github.com/eolszewski/eventstore-eth#readme",
"devDependencies": {
"codecov": "^3.0.0",
"coveralls": "^3.0.0",
"docdash": "^0.4.0",
"jsdoc": "^3.5.5",
"react-scripts": "^1.1.1",
"solidity-coverage": "^0.4.14",
"truffle": "4.1.11"
},
"dependencies": {
"bs58": "^4.0.1",
"dotenv": "^6.0.0",
"ipfs-api": "^20.0.1",
"truffle-contract": "^3.0.4",
"truffle-hdwallet-provider": "0.0.5",
"web3": "^0.19.1",
"web3-provider-engine": "^13.6.6",
"zeppelin-solidity": "^1.6.0"
}
}