-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 6.43 KB
/
package.json
File metadata and controls
157 lines (157 loc) · 6.43 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "unique-marketplace-backend",
"version": "3.2.0",
"description": "Backend project for unique marketplace",
"author": "Unique Network",
"private": true,
"license": "GPL-3.0",
"scripts": {
"nx": "nx",
"dev": "nx run-many --target=serve --projects=market,escrow --all --parallel=2",
"dev:market": "nx run market:serve",
"dev:escrow": "nx run escrow:serve",
"build": "nx build --skip-nx-cache",
"build:market": "nx build market",
"build:escrow": "nx build escrow",
"build:all": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all --parallel=1",
"test:market": "nx test market",
"test:escrow": "nx test escrow",
"lint": "nx run-many --target=lint --all",
"lint:fix": "nx run-many --target=lint --all --fix --skip-nx-cache",
"start": "node -r source-map-support/register ./dist/packages/market/main.js",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ./ --include-path 'packages/escrow/*' --include-path 'packages/market/*' ",
"tools:generate:docs": "ts-node tools/generate-docs.ts",
"generate:client:api": "npx ts-node --project tools/tsconfig.tools.json tools/generate-client-api.ts",
"sol:test": "npx hardhat test --config ./packages/contracts/hardhat-test.config.ts",
"sol:test:debug": "yarn hardhat test --no-compile --network test --config ./packages/contracts/hardhat-test.config.ts",
"sol:script:debug": "yarn hardhat run --no-compile --config ./packages/contracts/hardhat.config.ts",
"sol:compile": "npx hardhat compile --config ./packages/contracts/hardhat.config.ts --force",
"sol:build:version": "npm run sol:compile && npx hardhat --config ./packages/contracts/hardhat.config.ts build:version",
"sol:deploy:upgradeable:opal": "export MANIFEST_DEFAULT_DIR=.openzeppelin/production && npx hardhat run --network opal --config ./packages/contracts/hardhat.config.ts packages/contracts/scripts/deploy-upgradeable-market.ts",
"sol:deploy:upgradeable:qtz": "export MANIFEST_DEFAULT_DIR=.openzeppelin/production && npx hardhat run --network qtz --config ./packages/contracts/hardhat.config.ts packages/contracts/scripts/deploy-upgradeable-market.ts",
"sol:deploy:upgradeable:unq": "export MANIFEST_DEFAULT_DIR=.openzeppelin/production && npx hardhat run --network unq --config ./packages/contracts/hardhat.config.ts packages/contracts/scripts/deploy-upgradeable-market.ts",
"sol:codestyle": "npx prettier --write --plugin=prettier-plugin-solidity 'packages/contracts/**/*.sol'",
"sol:blacklist": "npx ts-node packages/contracts/scripts/blacklist-manager.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js -d packages/common/modules/database/typeorm.config.ts",
"migration:generate": "npm run typeorm migration:generate --",
"migration:run": "npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert",
"migration:create": "node --require ts-node/register ./node_modules/typeorm/cli.js migration:create"
},
"dependencies": {
"@unique-nft/sdk-v2": "npm:@unique-nft/sdk@2.10.1-1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@nestjs/axios": "^2.0.0",
"@nestjs/common": "^9.3.9",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.9",
"@nestjs/jwt": "^10.0.3",
"@nestjs/microservices": "^9.3.9",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/swagger": "^6.2.1",
"@nestjs/terminus": "^9.2.1",
"@nestjs/typeorm": "^9.0.1",
"@nestjs/websockets": "^9.3.9",
"@sentry/node": "^7.38.0",
"@types/multer": "^1.4.7",
"@unique-nft/accounts": "^0.3.7",
"@unique-nft/sdk": "^0.7.7",
"@unique-nft/solidity-interfaces": "^1.0.1",
"@willsoto/nestjs-prometheus": "^5.1.0",
"axios": "^1.0.0",
"cache-manager": "^5.1.7",
"cache-manager-redis-store": "^3.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cli-color": "^2.0.3",
"eslint-plugin-regex": "^1.10.0",
"helmet": "^6.1.2",
"minio": "^7.1.1",
"nestjs-graphile-worker": "^0.7.0",
"nestjs-typeorm-paginate": "^4.0.3",
"pg": "^8.9.0",
"pg-connection-string": "^2.5.0",
"reflect-metadata": "^0.1.13",
"response-time": "^2.3.2",
"rxjs": "^7.0.0",
"socket.io": "^4.6.0",
"socket.io-client": "^4.6.0",
"source-map-support": "^0.5.21",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.5.0",
"typeorm": "^0.3.12",
"web3": "^1.8.2"
},
"lint-staged": {
"*.ts": "npm run lint:fix"
},
"keywords": [
"blockchain",
"parachain",
"polkadot",
"unique network",
"nft",
"rft",
"marketplace"
],
"bugs": {
"url": "https://github.com/UniqueNetwork/unique-marketplace-backend/issues"
},
"homepage": "https://unique.network/",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"@nestjs/schematics": "^9.0.4",
"@nestjs/testing": "^9.3.9",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nrwl/cli": "^15.7.2",
"@nrwl/eslint-plugin-nx": "^15.7.2",
"@nrwl/jest": "^15.7.2",
"@nrwl/js": "^15.7.2",
"@nrwl/linter": "^15.7.2",
"@nrwl/nest": "^15.7.2",
"@nrwl/node": "^15.7.2",
"@nrwl/webpack": "15.7.2",
"@nrwl/workspace": "^15.7.2",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"git-cliff": "^1.1.2",
"hardhat": "^2.22.2",
"jest": "^29.4.3",
"jest-environment-jsdom": "28.1.1",
"jest-expect-message": "^1.1.3",
"lint-staged": "^13.1.2",
"ng-packagr": "^15.1.2",
"nx": "^15.7.2",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.3.1",
"supertest": "^6.3.3",
"swagger-typescript-api": "^12.0.3",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typechain": "^8.3.2",
"typescript": "^4.9.5"
},
"optionalDependencies": {
"@nrwl/nx-darwin-arm64": "^15.9.3",
"@nrwl/nx-linux-x64-gnu": "^15.9.3"
}
}