forked from PolymeshAssociation/polymesh-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4.94 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
{
"name": "polymesh-private-rest-api",
"version": "2.0.0",
"description": "Provides a REST like interface for interacting with the Polymesh Private blockchain",
"author": "Polymesh Association",
"private": true,
"license": "Apache-2.0",
"scripts": {
"nest": "nest",
"prepare": "husky install",
"dedupe": "npx yarn-deduplicate yarn.lock",
"prebuild": "rimraf dist",
"postinstall": "rimraf node_modules/@polymeshassociation/polymesh-sdk/node_modules/@polkadot/{util-crypto,wasm-crypto,util,wasm-bridge} && rimraf node_modules/@polymeshassociation/{hashicorp-vault-signing-manager,fireblocks-signing-manager}/node_modules/@polkadot/{util,util-crypto,wasm-bridge}",
"build": "nest build",
"commit": "npx git-cz",
"format": "prettier-eslint --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:repl": "yarn start --entryFile commands/repl",
"generate:swagger": "yarn start --entryFile commands/write-swagger",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"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",
"postgres": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d src/datastore/postgres/source.ts",
"postgres:dev": "docker compose --env-file=./postgres.dev.config",
"postgres:dev:start": "yarn postgres:dev up postgres -d ",
"postgres:dev:stop": "yarn postgres:dev down postgres",
"postgres:dev:reset": "yarn postgres:dev down postgres --volumes && yarn postgres:dev:start",
"postgres:dev:migration:generate": "source ./postgres.dev.config && yarn postgres migration:generate",
"postgres:dev:migration:run": "source ./postgres.dev.config && yarn postgres migration:run",
"postgres:dev:migration:revert": "source ./postgres.dev.config && yarn postgres migration:revert",
"postgres:migration:run": "yarn postgres migration:run"
},
"dependencies": {
"@golevelup/ts-jest": "^0.3.3",
"@nestjs/axios": "^3.0.0",
"@nestjs/common": "^10.2.4",
"@nestjs/config": "^3.0.1",
"@nestjs/core": "^10.2.4",
"@nestjs/passport": "^10.0.1",
"@nestjs/platform-express": "^10.2.4",
"@nestjs/schedule": "^3.0.3",
"@nestjs/swagger": "^7.1.10",
"@nestjs/typeorm": "^10.0.0",
"@polymeshassociation/fireblocks-signing-manager": "^2.3.0",
"@polymeshassociation/hashicorp-vault-signing-manager": "^3.1.0",
"@polymeshassociation/local-signing-manager": "^3.1.0",
"@polymeshassociation/polymesh-private-sdk": "2.0.0",
"@polymeshassociation/signing-manager-types": "^3.1.0",
"class-transformer": "0.5.1",
"class-validator": "^0.14.0",
"joi": "17.4.0",
"json-stable-stringify": "^1.0.2",
"lodash": "4.17.21",
"passport": "^0.6.0",
"passport-custom": "^1.1.1",
"passport-headerapikey": "^1.2.2",
"pg": "^8.11.3",
"reflect-metadata": "0.1.13",
"rhea-promise": "^3.0.1",
"rimraf": "3.0.2",
"rxjs": "^7.5.7",
"swagger-ui-express": "5.0.0",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.22.11",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@nestjs/cli": "^10.1.17",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/npm": "^9.0.2",
"@types/axios": "^0.14.0",
"@types/cron": "^1.7.3",
"@types/express": "4.17.17",
"@types/jest": "29.5.4",
"@types/jest-when": "^3.5.2",
"@types/json-stable-stringify": "^1.0.34",
"@types/lodash": "^4.14.197",
"@types/node": "^18.15.11",
"@types/passport": "^1.0.11",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"@zerollup/ts-transform-paths": "1.7.11",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-semistandard": "17.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-when": "^3.6.0",
"lint-staged": "14.0.1",
"prettier": "2.8.8",
"prettier-eslint": "15.0.1",
"prettier-eslint-cli": "7.1.0",
"semantic-release": "^19.0.5",
"supertest": "6.1.3",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "4.8.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}