-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 2.34 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
{
"scripts": {
"dev:network:start": "ts-node-dev src/gateway/init.ts",
"dev:network:watch": "ts-node-dev --watch -- src/gateway/init.ts",
"build": "tsc",
"start:prod": "node dist/gateway/init.js",
"start:prod:replica": "node dist/gateway/init.js --replica",
"start:local": "node dist/gateway/init.js --env_path .secrets/local.env --local",
"start:local:replica": "node dist/gateway/init.js --env_path .secrets/local.env --replica --local",
"start:local:testnet": "node dist/gateway/init.js --env_path .secrets/local-testnet.env --local",
"start:prod:testnet": "node dist/gateway/init.js --env_path .secrets/prod-testnet.env",
"format": "prettier --write .",
"test": "jest",
"test:regression": "node ./node_modules/.bin/jest ./src/__tests__/regression"
},
"engines": {
"node": ">=16.5"
},
"license": "MIT",
"author": "Redstone Team <[email protected]>",
"dependencies": {
"@bundlr-network/client": "0.9.6",
"@idena/vrf-js": "^1.0.1",
"@koa/cors": "3.2.0",
"@koa/router": "10.1.1",
"@types/yargs": "17.0.7",
"JSONStream": "^1.3.5",
"arbundles": "^0.7.0",
"arweave": "1.11.8",
"axios": "^0.26.1",
"dotenv": "16.0.3",
"elliptic": "^6.5.4",
"ethers": "^5.7.2",
"exponential-backoff": "3.1.0",
"ioredis": "^5.2.4",
"knex": "0.95.14",
"koa": "2.13.4",
"koa-bodyparser": "4.3.0",
"koa-compress": "5.1.0",
"nodemailer": "^6.9.1",
"parse-json-stream": "^2.4.0",
"pg": "8.7.3",
"pg-query-stream": "^4.2.3",
"raw-body": "^2.5.1",
"undici": "5.14.0",
"warp-contracts": "1.2.48",
"warp-contracts-pubsub": "^1.0.3",
"warp-contracts-subscription-plugin": "1.0.4",
"warp-signature": "1.0.4",
"yargs": "17.3.0"
},
"devDependencies": {
"@types/cli-table": "0.3.0",
"@types/jest": "27.0.3",
"@types/koa-bodyparser": "4.3.4",
"@types/koa__router": "8.0.11",
"@types/nodemailer": "^6.4.7",
"@types/object-hash": "2.2.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"autocannon": "^7.6.0",
"cli-table": "0.3.11",
"colors": "1.4.0",
"cross-env": "7.0.3",
"eslint": "8.3.0",
"jest": "27.4.5",
"prettier": "2.5.0",
"ts-jest": "27.1.2",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.10.1",
"typescript": "4.5.2"
}
}