-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.37 KB
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
{
"name": "@verida/meta-transaction-server",
"version": "1.1.0",
"description": "Verida Meta-Transaction-Server",
"main": "dist/server.js",
"scripts": {
"build": "rm -rf dist && tsc",
"prestart": "yarn build",
"start": "sls offline start --stage offline",
"tests": "ts-mocha './tests/**/*.ts'",
"test": "ts-mocha --timeout 200000",
"mainnet-deploy": "export AWS_PROFILE=verida-mainnet && yarn build && sls create_domain --stage mainnet --config mainnet.serverless.yml && sls deploy --stage mainnet --config mainnet.serverless.yml",
"myrtle-deploy": "export AWS_PROFILE=verida-mainnet && yarn build && sls create_domain --stage myrtle --config myrtle.serverless.yml && sls deploy --stage myrtle --config myrtle.serverless.yml",
"testnet-deploy": "export AWS_PROFILE=verida-testnet && yarn build && sls create_domain --stage testnet && sls deploy --stage testnet",
"devnet-deploy": "export AWS_PROFILE=verida-testnet && yarn build && sls create_domain --stage devnet && sls deploy --stage devnet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/verida/blockchain-meta-transaction-server.git"
},
"author": "Verida",
"license": "ISC",
"bugs": {
"url": "https://github.com/verida/blockchain-meta-transaction-server/issues"
},
"homepage": "https://github.com/verida/blockchain-meta-transaction-server#readme",
"dependencies": {
"@barchart/log4js-node-appenders": "^1.1.5",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/wallet": "^5.7.0",
"@verida/types": "^4.0.0",
"@verida/vda-common": "^4.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ethers": "5.7.0",
"express": "^4.17.1",
"log4js": "^6.4.1",
"memory-cache": "^0.2.0",
"nano": "^9.0.5",
"serverless-http": "^3.0.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mocha": "^10.0.7",
"@types/node": "^18.15.11",
"@verida/account-node": "^4.0.0",
"@verida/client-ts": "^4.0.0",
"@verida/did-client": "^4.0.0",
"@verida/encryption-utils": "^4.0.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.14",
"serverless": "^3.22.0",
"serverless-domain-manager": "^6.0.3",
"serverless-dotenv-plugin": "^4.0.1",
"serverless-offline": "^8.8.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.4.4"
}
}