forked from Liliatan/redstone-oracles-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.24 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
{
"name": "@redstone-finance/cache-service",
"version": "0.4.0",
"description": "",
"author": "",
"private": true,
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && yarn global:tsc --build tsconfig.build.json && yarn nest build",
"bundle": "ENTRYPOINT=dist/src/main.js yarn global:rollup -c ../../rollup.config.mjs",
"run-ts": "yarn global:ts-node",
"format": "yarn global:prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "yarn nest start",
"start:dev": "yarn nest start --watch",
"start:debug": "yarn nest start --debug --watch",
"start:prod": "yarn global:node dist/src/main",
"lint": "yarn global:eslint .",
"test": "yarn global:jest:cov --runInBand",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"query-arweave": "node scripts/query-arweave.js",
"measure-throughput": "node scripts/measure-throughput.js"
},
"dependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/mongoose": "^9.2.2",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/schedule": "^2.1.0",
"@redstone-finance/protocol": "^0.4.0",
"@redstone-finance/sdk": "^0.4.0",
"@redstone-finance/utils": "^0.4.0",
"arweave": "^1.12.2",
"cache-manager": "^5.1.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"mongoose": "^7.6.3",
"nestjs-pino": "^3.1.1",
"pako": "^2.1.0",
"pino-http": "^8.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"streamr-client": "^8.5.5"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/express": "^4.17.14",
"@types/pako": "^2.0.3",
"@types/supertest": "^2.0.12",
"graphql": "^16.8.1",
"graphql-request": "^5.2.0",
"mongodb-memory-server": "^9.1.6",
"prompts": "^2.4.2",
"source-map-support": "^0.5.20",
"supertest": "^6.2.3",
"ts-loader": "^9.2.3",
"tsconfig-paths": "4.0.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0"
}
}