-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "data-sharing",
"version": "1.0.0",
"description": "A data sharing market on blockchain",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard",
"compile": "cd ./lib/blockchain/contracts && truffle compile",
"migrate": "cd ./lib/blockchain/contracts && truffle migrate",
"api": "cd ./api && yarn start",
"dapp": "cd ./dapp && yarn start",
"processor": "cd ./processor && yarn start",
"controller": "cd ./controller && yarn start",
"explorer": "cd ./explorer && yarn start"
},
"repository": {
"type": "git",
"url": "https://github.com/cnasikas/data-market"
},
"keywords": [
"dapp",
"rest",
"ethereum",
"solidity",
"smart",
"contract",
"data",
"data market",
"blockchain"
],
"author": "Christos Nasikas",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"standard": "^12.0.1"
},
"dependencies": {
"truffle-contract": "^3.0.6"
},
"standard": {
"ignore": [
"**/build/**",
"**/node_modules/**",
"**/migrations/**",
"**/seeders/**",
"**/sjcl-all/**",
"**/test/**",
"**/db/models/index.js",
"**/registerServiceWorker.js"
]
}
}