-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 3.18 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
82
83
84
85
{
"name": "@verida/storage-node",
"version": "4.0.1",
"description": "Verida Storage Node middleware that bridges decentralised identities so they can control access to databases within a CouchDB storage engine",
"main": "dist/server.js",
"scripts": {
"prebuild": "echo 'export const BUILD_DETAILS = {buildTimestamp: \"'$(date -u -Iseconds)'\"};' > ./src/build.js",
"clean": "rm -rf dist",
"tests": "mocha -mocha --require @babel/polyfill --require @babel/register './test/**/*.js' --timeout 30000",
"test": "mocha -mocha --require @babel/polyfill --require @babel/register --timeout 30000",
"dev": "nodemon --exec babel-node src/server.js",
"build": "yarn clean && yarn babel src -d dist --extensions .js",
"serve": "node --trace-warnings dist/server.js",
"build-docker-multiplatform-dev": "yarn build && docker buildx build --platform linux/amd64,linux/arm64 --push -t verida/storage-node:dev .",
"build-docker-multiplatform-livedev": "yarn build && docker buildx build --file DockerfileLiveDev --platform linux/amd64,linux/arm64 --push -t verida/storage-node:dev .",
"build-docker-multiplatform-prod": "yarn build && docker buildx build --platform linux/amd64,linux/arm64 --push -t verida/storage-node:latest .",
"build-docker-multiplatform-debug": "yarn build && docker buildx build --platform linux/amd64,linux/arm64 --push -t verida/storage-node:debug .",
"build-docker-amd64-prod": "yarn build && docker buildx build --platform linux/amd64 --push -t verida/storage-node:latest ."
},
"files": [
"**/*.ts",
"**/*.js",
"**/*.mjs",
"**/*.cjs",
"**/*.json",
"**/*.svg",
"**/*.xml",
"**/*.yml",
"**/*.lock",
"**/*.bnf",
"**/*.map",
".nvmrc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/verida/storage-node.git"
},
"author": "Verida",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/verida/storage-node/issues"
},
"engines": {
"node": "^18.0.0"
},
"homepage": "https://github.com/verida/storage-node/README.md",
"dependencies": {
"@babel/runtime": "^7.16.7",
"@verida/did-client": "^4.0.0",
"@verida/did-document": "^4.0.0",
"@verida/encryption-utils": "^4.0.0",
"@verida/types": "^4.0.0",
"@verida/vda-common": "^4.0.0",
"@verida/vda-did-resolver": "^4.0.0",
"aws-serverless-express": "^3.4.0",
"axios": "^1.2.1",
"cors": "^2.8.5",
"did-resolver": "^3.1.0",
"dotenv": "^8.2.0",
"ethers": "^5.7.2",
"express": "^4.17.1",
"express-basic-auth": "git+https://github.com/Mozzler/express-basic-auth.git",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"nano": "^8.1.0",
"rand-token": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/node": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/polyfill": "^7.8.0",
"@babel/preset-env": "^7.20.2",
"@verida/account-node": "4.0.0-alpha.0",
"@verida/client-ts": "4.0.0-alpha.0",
"claudia": "^5.14.1",
"ethers": "^5.7.2",
"mocha": "^7.0.0",
"nodemon": "^2.0.14",
"pouchdb": "^7.2.2",
"prettier": "2.5.1"
}
}