-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
140 lines (140 loc) · 4.42 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "pyxis-safe-api",
"version": "0.7.0",
"description": "Pyxis Safe Backend API",
"author": {
"name": "Aura Network",
"email": "admin@aura.network"
},
"private": true,
"license": "MIT",
"scripts": {
"build": "npm run prebuild && npm run build:prod",
"prebuild": "rimraf dist",
"build:prod": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"dev": "ts-node src/main.ts",
"start:prod": "node dist/main.js",
"watch:dev": "ts-node-dev src/main.ts",
"debug:dev": "cross-env TS_NODE_CACHE=false ts-node-dev --inspect --ignore '/^src/.*\\.spec\\.ts$/' src/main.ts",
"lint": "eslint --ext .ts --format=pretty ./",
"lint:fix": "npm run lint --fix",
"postinstall": "patch-package",
"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 ./test/jest-e2e.json",
"migration:generate": "ts-node node_modules/typeorm/cli.js -f ormconfig migration:generate -d src/migrations -n",
"migration:create": "ts-node node_modules/typeorm/cli.js migration:create",
"migration:revert": "ts-node node_modules/typeorm/cli.js -f ormconfig migration:revert"
},
"dependencies": {
"@cosmjs/amino": "^0.31.1",
"@cosmjs/cosmwasm-stargate": "^0.31.1",
"@cosmjs/crypto": "^0.31.1",
"@cosmjs/encoding": "^0.31.1",
"@cosmjs/math": "^0.31.1",
"@cosmjs/proto-signing": "^0.31.1",
"@cosmjs/stargate": "0.31.1",
"@golevelup/ts-jest": "^0.3.5",
"@nestjs/axios": "0.1.0",
"@nestjs/bull": "^10.0.1",
"@nestjs/common": "^9.3.12",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.12",
"@nestjs/jwt": "^10.0.2",
"@nestjs/passport": "9.0.0",
"@nestjs/platform-express": "^9.3.9",
"@nestjs/schedule": "^2.1.0",
"@nestjs/swagger": "^6.2.1",
"@nestjs/testing": "^9.3.12",
"@nestjs/typeorm": "^9.0.1",
"axios": "^1.3.3",
"body-parser": "^1.20.2",
"bull": "^4.10.4",
"cache-manager": "^3.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cosmjs-types": "^0.6.1",
"dotenv": "^16.0.3",
"ethereumjs-util": "^7.1.5",
"express-ctx": "^0.1.1",
"follow-redirects": "^1.14.7",
"lodash": "^4.17.21",
"long": "^5.2.1",
"mysql2": "^2.3.3",
"node-fetch": "^2.6.7",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0",
"prom-client": "^14.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.8.0",
"shelljs": "^0.8.5",
"swagger-stats": "^0.99.5",
"typeorm": "^0.3.0"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.1",
"@types/cache-manager": "^3.4.2",
"@types/express": "^4.17.13",
"@types/jest": "29.2.0",
"@types/lodash": "^4.14.191",
"@types/node": "^16.0.0",
"@types/node-fetch": "^2.6.2",
"@types/passport-jwt": "^3.0.8",
"@types/supertest": "^2.0.11",
"@types/swagger-stats": "^0.95.8",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^45.0.2",
"jest": "^29.2.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/migrations/"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/$1"
}
}
}