forked from warp-contracts/warp-dre-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.92 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": "warp-dre-node",
"version": "1.0.0",
"description": "A Delegated Resolution Environment (D.R.E.) node for Warp Contracts",
"author": "just_ppe",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:format": "prettier --config .prettierrc 'src/**/*.js' --write",
"prepublishOnly": "yarn-or-npm lint",
"preversion": "yarn-or-npm lint && yarn-or-npm build",
"generate-arweave-wallet": "node src/tools/generateArweaveWallet.js",
"run-bullmq": "docker-compose up -d bullmq",
"run-postgres:local": "docker-compose -f ./docker-compose-local.yml up -d postgres",
"db-setup:local": "psql -U postgres -h localhost -p 21726 -d postgres -f ./src/db/pgRolesAndSchemasSetup.sql",
"run-docker": "docker-compose up -d",
"run-docker:local": "docker-compose -f ./docker-compose-local.yml up -d",
"stop-docker": "docker-compose down",
"stop-docker:local": "docker-compose -f ./docker-compose-local.yml down",
"start": "yarn-or-npm run run-bullmq && node src/listener.js",
"start:dev": "yarn-or-npm run run-bullmq && ENV=prod nodemon src/listener.js",
"start:prod": "yarn-or-npm run run-bullmq && ENV=prod node src/listener.js",
"start:test": "yarn-or-npm run run-bullmq && ENV=test node src/listener.js",
"start:local": "docker-compose -f docker-compose-local.yml up --force-recreate --build -d",
"logs": "docker logs -f --tail 1000 warp-dre-node-dre-1",
"stop:local": "docker logs -f --tail 1000 warp-dre-node-dre-1",
"test": "jest"
},
"engines": {
"node": ">=16.5"
},
"dependencies": {
"@koa/cors": "4.0.0",
"@koa/router": "12.0.0",
"@othent/warp-contracts-plugin-jwt-verify": "^1.0.401",
"arweave": "1.11.8",
"async-exit-hook": "^2.0.1",
"better-sqlite3": "^8.5.0",
"bullmq": "4.8.0",
"dotenv": "^16.0.3",
"ioredis": "^5.3.2",
"jsonpath-plus": "^7.2.0",
"koa": "^2.14.2",
"koa-bodyparser": "4.3.0",
"koa-compress": "^5.1.0",
"node-nlp": "^4.24.0",
"pg": "^8.11.2",
"safe-stable-stringify": "^2.4.3",
"warp-contracts": "1.4.31",
"warp-contracts-evaluation-progress-plugin": "1.0.17",
"warp-contracts-lmdb": "1.1.10",
"warp-contracts-postgres": "1.1.4",
"warp-contracts-plugin-blacklist": "1.0.0",
"warp-contracts-plugin-ethers": "1.0.7",
"warp-contracts-plugin-nlp": "1.0.8",
"warp-contracts-plugin-signature": "1.0.12",
"warp-contracts-plugin-vm2": "1.0.2",
"warp-contracts-plugin-vrf": "1.0.4",
"warp-contracts-pubsub": "^1.0.6",
"websocket": "^1.0.34"
},
"devDependencies": {
"cli-progress": "^3.11.2",
"command-line-args": "^5.2.1",
"deep-object-diff": "^1.1.9",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.1",
"yarn-or-npm": "^3.0.1",
"warp-contracts-sqlite": "1.0.2"
}
}