This repository was archived by the owner on Jun 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.94 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
{
"name": "iot-did-bigchaindb",
"version": "1.0.0",
"private": true,
"scripts": {
"release": "standard-version --no-verify",
"clean": "rm -rf dist docs",
"start": "node babel.js",
"babel": "./node_modules/.bin/babel src -d dist --source-maps --copy-files",
"build": "npm run clean && npm run docs && npm run babel && node ./dist",
"dev": "./node_modules/.bin/nodemon --debug -L babel.js --ext 'js json'",
"test": "mocha test --timeout 6000 --compilers js:babel-core/register --require babel-polyfill",
"lint": "./node_modules/.bin/eslint --cache .",
"git-hook": "validate-commit-msg && npm run lint",
"outdated": "yarn outdated"
},
"dependencies": {
"ajv": "^5.2.2",
"babel-preset-env": "^1.6.0",
"bigchaindb-driver": "^0.3.0",
"bigchaindb-graphql": "^1.0.1",
"bip39": "^2.4.0",
"clone": "^2.1.1",
"crypto-js": "^3.1.9-1",
"es6-promise": "^4.0.5",
"import-dir": "^0.0.1",
"iota.lib.js": "^0.4.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-compose": "^4.0.0",
"koa-convert": "^1.2.0",
"koa-cors": "^0.0.16",
"koa-helmet": "^3.2.0",
"koa-logger": "^3.0.1",
"koa-methodoverride": "^2.0.0",
"koa-mount": "^3.0.0",
"koa-onerror": "^3.1.0",
"koa-qs": "^2.0.0",
"koa-router": "^7.2.1",
"koa-xml-body": "^2.0.0",
"query-string": "^5.0.0",
"uuid": "^3.1.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.1",
"dotenv": "^4.0.0",
"eslint": "^4.4.1",
"eslint-config-ascribe": "^3.0.4",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.5.0",
"sinon": "^3.2.0"
}
}