-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.46 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"author": "jarvandev",
"bugs": "https://github.com/mimir-labs/mimir-server/issues",
"homepage": "https://github.com/mimir-labs/mimir-server#readme",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"packageManager": "yarn@4.0.0-rc.44",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mimir-labs/mimir-server.git"
},
"sideEffects": false,
"type": "commonjs",
"version": "0.0.0",
"scripts": {
"build": "yarn build:api && yarn build:indexing",
"build:api": "nest build api",
"build:indexing": "nest build indexing",
"dev:api": "nest start api --watch",
"dev:indexing": "nest start indexing --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix && tsc --emitDeclarationOnly",
"mimir-dev": "ts-node -r tsconfig-paths/register ./scripts/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./apps/main/test/jest-e2e.json"
},
"dependencies": {
"@nestjs/cache-manager": "^2.0.0",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/event-emitter": "^1.4.1",
"@nestjs/jwt": "^10.0.3",
"@nestjs/microservices": "^9.4.2",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/typeorm": "^9.0.1",
"@polkadot/api": "^10.9.1",
"@polkadot/types": "^10.9.1",
"@polkadot/util": "^12.4.2",
"@polkadot/util-crypto": "^12.4.2",
"cache-manager": "^5.2.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"nestjs-typeorm-paginate": "^4.0.3",
"node-fetch": "^2.6.11",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"typeorm": "0.3.16"
},
"devDependencies": {
"@mimirdev/dev": "^0.2.0",
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/eslint": "^8",
"@types/express": "^4.17.13",
"@types/jest": "29.5.1",
"@types/node": "^16.11.10",
"@types/node-fetch": "^2.6.4",
"@types/pg": "^8",
"@types/supertest": "^2.0.11",
"@types/yargs": "^17",
"eslint": "^8.41.0",
"jest": "29.5.0",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.1.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.7.0",
"tsconfig-paths": "4.2.0",
"typescript": "^5.0.0",
"yargs": "^17.7.2"
}
}