This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.33 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
{
"name": "@verida/datastore",
"version": "0.7.4",
"description": "Verida Datastore",
"main": "lib/app.js",
"author": "Verida",
"license": "Apache-2.0",
"scripts": {
"test": "mocha -mocha --require @babel/polyfill --require @babel/register './test/**/*.js'",
"generate-api-docs": "./node_modules/.bin/jsdoc ./ -r -c .jsdoc.conf -d apidocs -u tutorials --readme README.api.md",
"serve-docs": "~/.npm-global/bin/docsify serve docs",
"build:dist": "rm -rf dist; ./node_modules/.bin/webpack --config webpack.config.js --mode=development",
"build:es5": "rm -rf lib; ./node_modules/.bin/babel src -d lib",
"build": "npm run build:es5; npm run build:dist;",
"prepublishOnly": "npm run build"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"dependencies": {
"@verida/did-helper": "^0.7.2",
"@verida/encryption-utils": "^0.2.1",
"@verida/wallet-utils": "^1.3.1",
"ajv": "^6.12.6",
"axios": "^0.19.2",
"bs58": "^4.0.1",
"crypto-pouch": "git+https://github.com/tahpot/crypto-pouch.git",
"did-document": "github:arablocks/did-document",
"did-jwt": "^4.9.0",
"did-jwt-vc": "^0.1.6",
"did-resolver": "^1.1.0",
"ethers": "^5.0.9",
"fs": "0.0.1-security",
"json-schema-ref-parser": "^7.1.2",
"json-schema-resolve-allof": "^1.5.0",
"lodash": "^4.17.15",
"near-api-js": "^0.38.0",
"ono": "^7.1.2",
"pouchdb": "^7.2.1",
"pouchdb-find": "^7.1.1",
"store": "^2.0.12",
"thor-devkit": "^1.2.5",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.0",
"url-exists": "^1.0.3",
"uuid": "^3.4.0",
"web3": "^1.2.9"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-register": "^6.26.0",
"jsdoc": "^3.6.4",
"minami": "^1.2.3",
"mocha": "^7.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}