-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.17 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
{
"name": "@openmfp/portal-server-lib",
"version": "0.163.8",
"description": "This library helps you to set up an openmfp based micro frontend portal server with ease.",
"repository": {
"url": "git+https://github.com/openmfp/portal-server-lib.git"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"author": "OpenMFP",
"license": "Apache-2.0",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "nest build",
"build:watch": "mkdirp dist && nodemon --ignore dist --ext js,yml,yaml,ts,html,css,scss,json,md --exec \"rimraf dist && npm run build && yalc publish --push --sig\"",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --detectOpenHandles",
"test:integration": "jest --config ./integration-tests/jest.config.ts"
},
"peerDependencies": {
"@nestjs/axios": "^4.0.1",
"@nestjs/common": "^11.1.9",
"@nestjs/core": "^11.1.9",
"@nestjs/platform-express": "^11.1.9",
"@nestjs/serve-static": "^5.0.4",
"axios": "^1.13.2",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"rxjs": "^7.8.2"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"validator": ">=13.15.22",
"jwt-decode": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "9.38.0",
"@nestjs/cli": "11.0.14",
"@nestjs/testing": "11.1.9",
"@openmfp/config-prettier": "0.9.1",
"@types/jest": "30.0.0",
"@types/node": "24.9.2",
"@types/supertest": "6.0.3",
"typescript-eslint": "8.46.2",
"concurrently": "9.2.1",
"cookie-parser": "1.4.7",
"globals": "16.5.0",
"eslint": "9.38.0",
"eslint-config-prettier": "10.1.8",
"jest": "30.2.0",
"jest-junit": "16.0.0",
"jest-mock-extended": "4.0.0",
"mkdirp": "3.0.1",
"nock": "14.0.10",
"nodemon": "3.1.10",
"prettier": "3.7.4",
"rimraf": "6.0.1",
"supertest": "7.1.4",
"ts-jest": "29.4.5",
"ts-loader": "9.5.4",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.3",
"wait-on": "9.0.1",
"yalc": "1.0.0-pre.53"
},
"type": "module"
}