-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
143 lines (143 loc) · 4.92 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
141
142
143
{
"name": "marketplace_api",
"version": "0.8.3",
"description": "The API allowing to manage Nevermined Marketplace common functionalities",
"main": "main.ts",
"scripts": {
"artifacts:download": "./scripts/download-artifacts.sh",
"build": "tsc -p tsconfig.build.json",
"database": "docker-compose -f docker-compose.yml up",
"database:clear": "docker-compose down -v",
"database:init": "npm run migration:run && npm run seeds",
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"format:check": "yarn prettier --check src",
"format:fix": "yarn prettier -w src",
"setup:dev": "cp ./config/local.js.sample ./config/local.js",
"prebuild": "rm -rf ./dist && mkdir ./dist && cp -r ./config ./dist/config && cp package.json ./dist",
"prestart": "yarn run build",
"start": "node -r dotenv/config dist/src/main.js",
"start:dev": "export PROFILE=development; node -r dotenv/config dist/src/main.js",
"start:prod": "export PROFILE=production; node -r dotenv/config dist/src/main.js",
"dev": "./node_modules/.bin/ts-node-dev -r dotenv/config --respawn src/main",
"prepare": "husky install .husky",
"prettier": "prettier --config ./.prettierrc.js --write \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:check": "prettier --check --config ./.prettierrc.js \"**/*.{js,json,md,sol,ts,yml}\"",
"test": "jest",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:watch": "jest --watch",
"test:postman": "newman run marketplace-collection.json -e marketplace-env.json",
"test:postman:html": "newman run marketplace-collection.json -e marketplace-env.json -r htmlextra --reporter-htmlextra-export testResults/htmlreport.html",
"typings:generate": "./node_modules/.bin/ts-node scripts/generate-typings",
"upgrade-interactive": "npx npm-check --update",
"postupgrade-interactive": "yarn test"
},
"dependencies": {
"@elastic/elasticsearch": "^8.10.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.1.3",
"@nestjs/elasticsearch": "^10.0.0",
"@nestjs/jwt": "^10.0.2",
"@nestjs/passport": "^10.0.0",
"@nestjs/platform-express": "^10.1.3",
"@nestjs/swagger": "^7.0.0",
"@nestjs/typeorm": "^10.0.0",
"@nevermined-io/passport-nevermined": "^0.3.0",
"@sideway/address": "^5.0.0",
"@sideway/formula": "^3.0.1",
"@sideway/pinpoint": "^2.0.0",
"cache-manager": "^5.2.1",
"class-transformer": "0.5.1",
"class-validator": "^0.14.0",
"cli-color": "^2.0.1",
"dotenv": "^16.3.1",
"ethers": "^5.6.3",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.27",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"reflect-metadata": "0.1.13",
"rxjs": "^7.8.0",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.7.0",
"@faker-js/faker": "^8.1.0",
"@nestjs/cli": "^10.1.11",
"@nestjs/testing": "^10.2.6",
"@nevermined-io/sdk": "1.6.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.200",
"@types/morgan": "^1.9.7",
"@types/node": "^20.3.1",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.35",
"@types/supertest": "^2.0.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-nevermined": "^0.2.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-date-mock": "^1.0.8",
"jose": "^4.14.4",
"lint-staged": "^13.2.3",
"newman": "^5.3.2",
"newman-reporter-htmlextra": "^1.22.11",
"prettier": "^3.0.3",
"prettier-package-json": "^2.8.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-to-eslint-config": "^2.14.0",
"uuid": "^9.0.0"
},
"lint-staged": {
"**/*.{js,json,md,sol,ts,yml}": [
"yarn run prettier"
],
"**/*.ts": [
"yarn run lint:fix"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"setupFiles": [
"jest-date-mock"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"author": "Nevermined",
"license": "ISC"
}