forked from nevermined-io/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.48 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
{
"name": "node-ts",
"version": "2.0.1",
"description": "Nevermined Node",
"main": "main.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint ./",
"clean": "rm -rf ./dist/ ./doc/ ./.nyc_output",
"lint:fix": "yarn run lint -- --fix",
"format:check": "yarn prettier --check src scripts",
"format:fix": "yarn prettier --check src scripts -w",
"setup:dev": "cp ./config/local.js.sample ./config/local.js && cp .env.sample .env",
"prebuild": "rm -rf ./dist && mkdir ./dist && cp -r ./config ./dist/config && cp -r ./argo-workflows-templates ./dist/argo-workflows-templates && cp package.json ./dist",
"prestart": "yarn run build",
"prepare": "husky install .husky",
"start": "export PROFILE=$NODE_ENV; node -r dotenv/config dist/src/main.js",
"start:prod": "export PROFILE=$NODE_ENV; node -r dotenv/config dist/src/main.js",
"dev": "./node_modules/.bin/ts-node-dev -r dotenv/config --respawn src/main",
"test": "jest ./src --setupFiles dotenv/config",
"test:cov": "jest ./src --setupFiles dotenv/config --coverage",
"integration": "jest ./integration --setupFiles dotenv/config",
"integration:cov": "jest ./integration --setupFiles dotenv/config --coverage",
"prettier": "prettier --config ./.prettierrc.js --write \"**/*.{json,md,sol,ts,yml}\"",
"prettier:check": "prettier --check --config ./.prettierrc.json \"**/*.{json,md,sol,ts,yml}\"",
"artifacts:mumbai": "sh ./scripts/download-artifacts.sh $CONTRACT_VERSION mumbai"
},
"dependencies": {
"@nestjs/axios": "^1.0.1",
"@nestjs/common": "^8.4.5",
"@nestjs/core": "^8.4.5",
"@nestjs/jwt": "^10.0.3",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.4.5",
"@nestjs/swagger": "^5.2.0",
"@nestjs/typeorm": "^10.0.0",
"@nevermined-io/argo-workflows-api": "^0.1.3",
"@nevermined-io/passport-nevermined": "^0.3.0",
"@nevermined-io/sdk": "^2.0.3",
"@nevermined-io/sdk-dtp": "^0.7.0-rc5",
"@sideway/address": "^5.0.0",
"@sideway/formula": "^3.0.1",
"@sideway/pinpoint": "^2.0.0",
"@types/multer": "^1.4.7",
"@types/node-rsa": "^1.1.1",
"aws-sdk": "^2.1421.0",
"axios": "^1.1.3",
"cache-manager": "^5.2.3",
"class-transformer": "0.5.1",
"class-validator": "^0.14.0",
"cli-color": "^2.0.1",
"dotenv": "^16.0.0",
"eciesjs": "^0.4.4",
"ethers": "^6.7.1",
"fetch-blob": "^4.0.0",
"form-data": "^4.0.0",
"formdata-polyfill": "^4.0.10",
"ipfs-http-client-lite": "^0.3.0",
"joi": "^17.11.0",
"jose": "^5.1.0",
"js-yaml": "4.1.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"moment-timezone": "^0.5.43",
"morgan": "^1.10.0",
"nest-router": "^1.0.9",
"node-rsa": "^1.1.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"reflect-metadata": "0.1.13",
"rxjs": "^7.5.7",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.4.2",
"@faker-js/faker": "^8.0.2",
"@golevelup/ts-jest": "0.4.0",
"@nestjs/cli": "^9.4.2",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^8.4.0",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.179",
"@types/node": "^17.0.21",
"@types/passport-jwt": "^3.0.9",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.16.0",
"aws-sdk-mock": "^5.8.0",
"eslint": "^8.11.0",
"eslint-config-nevermined": "^0.2.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.26.0",
"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",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"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.12.3",
"uuid": "^8.3.2"
},
"lint-staged": {
"**/*.{js,json,md,sol,ts,yml}": [
"yarn run prettier"
],
"**/*.ts": [
"yarn run lint:fix"
]
},
"author": "Nevermined",
"license": "Apache-2.0"
}