-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.61 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
{
"name": "shokku",
"description": "Shokku - An open source scalable blockchain infrastructure for Ubiq, Ethereum and IPFS",
"version": "0.1.0",
"author": "@aldoborrero",
"license": "Apache License 2.0",
"private": true,
"main": "./build/main.js",
"scripts": {
"start": "npm run build && npm run run",
"build": "npm run clean && npm run create-static && npm run document && npm run backpack",
"clean": "rm -rf build",
"create-static": "mkdir -p build && cp -R src/static build/static",
"document": "raml2html --theme raml2html-material-theme src/server/raml/shokku.raml > build/static/index.html",
"backpack": "backpack build",
"run": "node ./build/main.js | pino -o 'short'",
"dev": "backpack dev | pino -o 'short'",
"lint": "eslint .",
"test": "nyc --reporter=lcov --reporter=text-summary mocha --recursive --exit --require babel-register --timeout 15000",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"report": "nyc report --reporter=lcov --reporter=text",
"dockerize": "node ./bin/dockerize.js"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.17.2",
"common-errors": "^1.0.4",
"compose-middleware": "^4.0.0",
"cors": "^2.8.4",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"express-subdomain": "^1.0.5",
"extensible-runtime": "^4.1.0",
"helmet": "^3.11.0",
"joi": "^13.1.2",
"lodash": "^4.17.5",
"osprey": "git+https://github.com/aldoborrero/osprey.git",
"osprey-router": "^0.5.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pino": "^4.13.0",
"raml-1-parser": "^1.1.40",
"request-error-handler": "^1.0.2",
"uuid": "^3.2.1",
"web3": "^1.0.0-beta.30"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^6.1.2",
"babel-plugin-extensible-destructuring": "^4.2.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-module-resolver": "^3.1.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"backpack-core": "^0.7.0",
"chai": "^4.1.2",
"chalk": "^2.3.2",
"dotenv": "^5.0.1",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-import": "^2.9.0",
"ganache-core": "^2.1.0",
"handlebars": "^4.0.11",
"mocha": "^5.0.1",
"nyc": "^11.6.0",
"raml2html": "^7.0.0",
"raml2html-material-theme": "^0.1.2",
"shelljs": "^0.8.1",
"solc": "^0.4.21",
"source-map-support": "^0.5.4",
"supertest": "^3.0.0",
"yargs": "^11.0.0"
}
}