@steedos/server 3.0.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +661 -0
- package/README.md +10 -0
- package/dist/app.controller.d.ts +7 -0
- package/dist/app.controller.js +35 -0
- package/dist/app.controller.js.map +1 -0
- package/dist/app.module.d.ts +4 -0
- package/dist/app.module.js +84 -0
- package/dist/app.module.js.map +1 -0
- package/dist/app.moleculer.d.ts +9 -0
- package/dist/app.moleculer.js +129 -0
- package/dist/app.moleculer.js.map +1 -0
- package/dist/bootstrap.d.ts +1 -0
- package/dist/bootstrap.js +156 -0
- package/dist/bootstrap.js.map +1 -0
- package/dist/config/env.config.d.ts +1 -0
- package/dist/config/env.config.js +128 -0
- package/dist/config/env.config.js.map +1 -0
- package/dist/config/index.d.ts +9 -0
- package/dist/config/index.js +46 -0
- package/dist/config/index.js.map +1 -0
- package/dist/config/moleculler.config.d.ts +63 -0
- package/dist/config/moleculler.config.js +96 -0
- package/dist/config/moleculler.config.js.map +1 -0
- package/dist/config/project.config.d.ts +1 -0
- package/dist/config/project.config.js +15 -0
- package/dist/config/project.config.js.map +1 -0
- package/dist/config/steedos.config.d.ts +13 -0
- package/dist/config/steedos.config.js +163 -0
- package/dist/config/steedos.config.js.map +1 -0
- package/dist/filters/all-exceptions.filter.d.ts +5 -0
- package/dist/filters/all-exceptions.filter.js +62 -0
- package/dist/filters/all-exceptions.filter.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +5 -0
- package/dist/main.js.map +1 -0
- package/package.json +136 -0
package/package.json
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@steedos/server",
|
|
3
|
+
"version": "3.0.0-beta.8",
|
|
4
|
+
"description": "",
|
|
5
|
+
"author": "",
|
|
6
|
+
"license": "AGPL-3.0-only",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"public",
|
|
10
|
+
"views"
|
|
11
|
+
],
|
|
12
|
+
"main": "dist/index.js",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "nest build",
|
|
15
|
+
"build:webpack": "webpack --config webpack.config.js",
|
|
16
|
+
"start:webpack": "node dist/bundle.js",
|
|
17
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
18
|
+
"start": "nest start",
|
|
19
|
+
"start:dev": "nest start --watch",
|
|
20
|
+
"start:debug": "nest start --debug --watch",
|
|
21
|
+
"start:prod": "node dist/main",
|
|
22
|
+
"moleculer:repl": "moleculer connect --config ./steedos.config.js",
|
|
23
|
+
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
24
|
+
"test": "jest",
|
|
25
|
+
"test:watch": "jest --watch",
|
|
26
|
+
"test:cov": "jest --coverage",
|
|
27
|
+
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
28
|
+
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@builder6/cli": "^0.16.3-alpha.0",
|
|
32
|
+
"@builder6/core": "^0.16.3-alpha.0",
|
|
33
|
+
"@builder6/email": "^0.16.3-alpha.0",
|
|
34
|
+
"@builder6/files": "^0.16.3-alpha.0",
|
|
35
|
+
"@builder6/moleculer": "^0.16.3-alpha.0",
|
|
36
|
+
"@builder6/oidc": "^0.16.3-alpha.0",
|
|
37
|
+
"@builder6/pages": "^0.16.3-alpha.0",
|
|
38
|
+
"@builder6/query-mongodb": "^0.16.3-alpha.0",
|
|
39
|
+
"@builder6/rooms": "^0.16.3-alpha.0",
|
|
40
|
+
"@builder6/services": "0.14.6",
|
|
41
|
+
"@builder6/sharepoint": "^0.16.3-alpha.0",
|
|
42
|
+
"@builder6/steedos": "^0.16.3-alpha.0",
|
|
43
|
+
"@builder6/tables": "^0.16.3-alpha.0",
|
|
44
|
+
"@nestjs/common": "^11.0.0",
|
|
45
|
+
"@nestjs/config": "^4.0.1",
|
|
46
|
+
"@nestjs/core": "^11.0.0",
|
|
47
|
+
"@nestjs/jwt": "^11.0.0",
|
|
48
|
+
"@nestjs/platform-express": "^11.0.0",
|
|
49
|
+
"@nestjs/platform-ws": "^11.0.0",
|
|
50
|
+
"@nestjs/schedule": "^5.0.0",
|
|
51
|
+
"@nestjs/serve-static": "^5.0.0",
|
|
52
|
+
"@nestjs/swagger": "^11.0.0",
|
|
53
|
+
"@nestjs/websockets": "^11.0.0",
|
|
54
|
+
"@steedos/ee_unpkg": "1.0.0",
|
|
55
|
+
"@steedos/service-community": "3.0.0-beta.8",
|
|
56
|
+
"@steedos/service-enterprise": "^3.0.0",
|
|
57
|
+
"@steedos/service-license": "2.5.49",
|
|
58
|
+
"@steedos/webapp": "3.0.0-beta.8",
|
|
59
|
+
"@types/multer": "^1.4.12",
|
|
60
|
+
"aws-sdk": "^2.1692.0",
|
|
61
|
+
"axios": "^1.7.9",
|
|
62
|
+
"bcrypt": "^5.1.1",
|
|
63
|
+
"class-validator": "^0.14.1",
|
|
64
|
+
"compression": "^1.7.5",
|
|
65
|
+
"cookie-parser": "^1.4.7",
|
|
66
|
+
"crypto-js": "^4.2.0",
|
|
67
|
+
"dotenv": "^16.4.5",
|
|
68
|
+
"dotenv-flow": "^4.1.0",
|
|
69
|
+
"express-session": "^1.18.1",
|
|
70
|
+
"fs-extra": "^11.2.0",
|
|
71
|
+
"hbs": "^4.2.0",
|
|
72
|
+
"http-proxy-middleware": "^3.0.3",
|
|
73
|
+
"ioredis": "^5.4.1",
|
|
74
|
+
"mime-types": "^2.1.35",
|
|
75
|
+
"moleculer": "^0.14.35",
|
|
76
|
+
"mongodb": "^3.7.3",
|
|
77
|
+
"multer": "^1.4.5-lts.1",
|
|
78
|
+
"nestjs-pino": "^4.2.0",
|
|
79
|
+
"nopt": "5.0.0",
|
|
80
|
+
"openid-client": "^5.7.1",
|
|
81
|
+
"passport": "^0.7.0",
|
|
82
|
+
"passport-local": "^1.0.0",
|
|
83
|
+
"passport-openidconnect": "^0.1.2",
|
|
84
|
+
"raw-body": "^3.0.0",
|
|
85
|
+
"reflect-metadata": "^0.2.0",
|
|
86
|
+
"regenerator-runtime": "^0.14.1",
|
|
87
|
+
"rxjs": "^7.8.1",
|
|
88
|
+
"sha256": "^0.2.0",
|
|
89
|
+
"uuid": "^9.0.0",
|
|
90
|
+
"ws": "8.13.0"
|
|
91
|
+
},
|
|
92
|
+
"devDependencies": {
|
|
93
|
+
"@nestjs/cli": "^11.0.0",
|
|
94
|
+
"@nestjs/testing": "^11.0.0",
|
|
95
|
+
"@types/express": "^5.0.0",
|
|
96
|
+
"@types/jest": "^29.5.2",
|
|
97
|
+
"@types/node": "^20.3.1",
|
|
98
|
+
"@types/supertest": "^6.0.0",
|
|
99
|
+
"eslint": "^8.0.0",
|
|
100
|
+
"eslint-config-prettier": "^9.0.0",
|
|
101
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
102
|
+
"jest": "^29.5.0",
|
|
103
|
+
"moleculer-cli": "^0.8.1",
|
|
104
|
+
"prettier": "^3.0.0",
|
|
105
|
+
"source-map-support": "^0.5.21",
|
|
106
|
+
"supertest": "^7.0.0",
|
|
107
|
+
"ts-jest": "^29.1.0",
|
|
108
|
+
"ts-loader": "^9.4.3",
|
|
109
|
+
"ts-node": "^10.9.1",
|
|
110
|
+
"tsconfig-paths": "^4.2.0",
|
|
111
|
+
"typescript": "5.7.3",
|
|
112
|
+
"webpack": "^5.97.1"
|
|
113
|
+
},
|
|
114
|
+
"jest": {
|
|
115
|
+
"moduleFileExtensions": [
|
|
116
|
+
"js",
|
|
117
|
+
"json",
|
|
118
|
+
"ts"
|
|
119
|
+
],
|
|
120
|
+
"rootDir": "src",
|
|
121
|
+
"testRegex": ".*\\.spec\\.ts$",
|
|
122
|
+
"transform": {
|
|
123
|
+
"^.+\\.(t|j)s$": "ts-jest"
|
|
124
|
+
},
|
|
125
|
+
"collectCoverageFrom": [
|
|
126
|
+
"**/*.(t|j)s"
|
|
127
|
+
],
|
|
128
|
+
"coverageDirectory": "../coverage",
|
|
129
|
+
"testEnvironment": "node"
|
|
130
|
+
},
|
|
131
|
+
"private": false,
|
|
132
|
+
"publishConfig": {
|
|
133
|
+
"access": "public"
|
|
134
|
+
},
|
|
135
|
+
"gitHead": "723d92765db5342a374c7aacb5b835e69f77ca4b"
|
|
136
|
+
}
|