-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.16 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
{
"name": "laji-api",
"version": "0.0.1",
"description": "FinBIF API",
"author": "Olli Raitio",
"private": true,
"license": "MIT",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "NODE_ENV=development NODE_TLS_REJECT_UNAUTHORIZED=0 nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/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": "jest --config ./test/jest-e2e.json",
"test:e2e-old": "mocha --timeout 6000 --require integration-test/setup.js ./integration-test/{form-permission,forms,collection,person,notifications,api-user,audio,image,warehouse,named-place,trait,document,annotation,area,information}/tests.js ./integration-test/document/validate-tests.js ./integration-test/document/batch-tests.js --exit",
"test:e2e-old:ci": "npm run test:e2e-old -- -R xunit --grep @no-ci --invert"
},
"dependencies": {
"@luomus/laji-schema": "^2.0.63",
"@luomus/laji-validate": "^0.0.121",
"@nestjs-modules/mailer": "^1.9.1",
"@nestjs/axios": "^3.0.0",
"@nestjs/common": "^10.2.4",
"@nestjs/config": "^3.0.1",
"@nestjs/core": "^10.2.4",
"@nestjs/platform-express": "^10.2.4",
"@nestjs/schedule": "^3.0.3",
"@nestjs/swagger": "^7.1.10",
"@nestjs/typeorm": "^10.0.0",
"ajv": "^8.12.0",
"axios": "^1.5.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"handlebars": "^4.7.8",
"http-proxy-middleware": "^3.0.0",
"jsonld": "^8.3.1",
"memoizee": "^0.4.15",
"nodemailer": "^6.9.5",
"oracledb": "^5.5.0",
"rdflib": "^2.2.32",
"redis": "^4.6.13",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.1.17",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.4",
"@types/express": "^4.17.17",
"@types/geojson": "^7946.0.14",
"@types/jest": "29.5.4",
"@types/jsonld": "^1.5.9",
"@types/memoizee": "^0.4.11",
"@types/node": "20.5.9",
"@types/nodemailer": "^6.4.9",
"@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": "18.20.4"
}
}