-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.87 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.87 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
{
"name": "laji-api",
"version": "0.0.1",
"description": "FinBIF API",
"author": "Olli Raitio",
"private": true,
"license": "MIT",
"scripts": {
"build": "nest build",
"nest:start": "nest start",
"start": "npm run start:dev",
"start:dev": "NODE_ENV=development NODE_TLS_REJECT_UNAUTHORIZED=0 nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --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": "mocha --timeout 60000 --require e2e/setup.js e2e/*.spec.js e2e/**/*.spec.js --ignore e2e/html-to-pdf.spec.js --exit",
"test:e2e:ci": "npm run test:e2e -- -R xunit",
"docker": "docker-compose -f docker-compose.npm-run.yml run npm-run",
"generate:graphql": "mesh-compose --output schema.graphql"
},
"dependencies": {
"@apollo/server": "^5.5.1",
"@as-integrations/express5": "^1.1.2",
"@envelop/response-cache-redis": "^4.3.1",
"@graphql-hive/nestjs": "^2.0.72",
"@graphql-mesh/compose-cli": "^1.5.32",
"@graphql-yoga/plugin-response-cache": "^3.23.2",
"@luomus/laji-schema": "^2.0.270",
"@luomus/laji-validate": "^0.0.127",
"@nestjs-modules/mailer": "^2.0.2",
"@nestjs/apollo": "^13.4.0",
"@nestjs/axios": "^4.0.1",
"@nestjs/bullmq": "^11.0.4",
"@nestjs/common": "^11.1.8",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.8",
"@nestjs/graphql": "^13.4.0",
"@nestjs/platform-express": "^11.1.8",
"@nestjs/schedule": "^6.0.1",
"@nestjs/swagger": "^11.2.1",
"@nestjs/typeorm": "^11.0.0",
"@omnigraph/openapi": "^0.109.52",
"@turf/boolean-contains": "^7.3.4",
"@turf/buffer": "^7.3.4",
"@turf/center": "^7.3.4",
"@turf/convex": "^7.2.0",
"@turf/explode": "^7.3.4",
"ajv": "^8.12.0",
"axios": "^1.5.0",
"axios-retry": "^4.5.0",
"bullmq": "^5.71.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"graphql": "^16.14.0",
"handlebars": "^4.7.8",
"html-pdf-chrome": "^0.8.4",
"http-proxy-middleware": "^3.0.0",
"jsonld": "^9.0.0",
"jsonpath-plus": "^10.3.0",
"memoizee": "^0.4.15",
"nodemailer": "^6.9.5",
"pino": "^10.1.0",
"rdflib": "^2.2.32",
"redis": "^4.6.13",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"sanitize-html": "^2.17.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@nestjs/cli": "^11.0.10",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.8",
"@types/express": "^4.17.17",
"@types/geojson": "^7946.0.14",
"@types/jest": "29.5.4",
"@types/jsonld": "^1.5.15",
"@types/jsonpath-plus": "^5.0.5",
"@types/memoizee": "^0.4.11",
"@types/node": "20.5.9",
"@types/nodemailer": "^6.4.9",
"@types/sanitize-html": "^2.16.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chai": "^4.3.8",
"chai-http": "^4.4.0",
"eslint": "^8.48.0",
"jest": "29.6.4",
"mocha": "^10.2.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "^5.2.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/$1"
},
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"volta": {
"node": "20.19.5"
}
}