@paralect/hive 0.1.50-alpha.2 → 0.1.50
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/.claude/settings.local.json +13 -0
- package/cli/helpers/execCommand.js +10 -10
- package/cli/helpers/isProjectInit.js +3 -3
- package/cli/helpers/mergeDirs.js +1 -1
- package/cli/hive.js +105 -105
- package/{test-app → framework}/.cursor/commands/add-service.md +6 -6
- package/{test-app → framework}/.cursor/skills/hive-overview/SKILL.md +1 -1
- package/{test-app → framework}/.cursor/skills/hive-service/SKILL.md +2 -2
- package/framework/bin/start.sh +2 -0
- package/{.hive/bootstrap-hive.js → framework/bootstrap-hive.ts} +4 -4
- package/{.hive → framework}/package-lock.json +212 -156
- package/framework/package.json +42 -0
- package/{.hive/src/app.js → framework/src/app.ts} +1 -1
- package/{.hive/src/bullMqBus.js → framework/src/bullMqBus.ts} +1 -1
- package/{.hive/src/bullMqWrapper.js → framework/src/bullMqWrapper.ts} +1 -1
- package/{.hive/src/app-config/index.js → framework/src/config/index.ts} +7 -7
- package/{.hive/src/db.js → framework/src/db.ts} +21 -6
- package/framework/src/endpoint.ts +132 -0
- package/framework/src/helpers/generateDbTypes.ts +47 -0
- package/{.hive/src/helpers/getMiddlewares.js → framework/src/helpers/getMiddlewares.ts} +1 -1
- package/{.hive/src/helpers/getResourceEndpoints.js → framework/src/helpers/getResourceEndpoints.ts} +8 -8
- package/{.hive/src/helpers/getResources.js → framework/src/helpers/getResources.ts} +1 -1
- package/{.hive/src/helpers/getSchemas.js → framework/src/helpers/getSchemas.ts} +13 -13
- package/framework/src/index.ts +3 -0
- package/{.hive/src/ioEmitter.js → framework/src/ioEmitter.ts} +1 -1
- package/{.hive/src/lib/node-mongo/src/mongo-query-service.js → framework/src/lib/node-mongo/src/mongo-query-service.ts} +18 -7
- package/{.hive/src/lib/node-mongo/src/mongo-service.js → framework/src/lib/node-mongo/src/mongo-service.ts} +17 -9
- package/{starter/src/logger.js → framework/src/logger.ts} +4 -3
- package/{.hive/src/migrations/migrations-log/migration-log.schema.js → framework/src/migrations/migrations-log/migration-log.schema.ts} +1 -1
- package/{.hive/src/migrations/migrations-log/migration-log.service.js → framework/src/migrations/migrations-log/migration-log.service.ts} +1 -1
- package/{.hive/src/migrations/migrations.schema.js → framework/src/migrations/migrations.schema.ts} +1 -1
- package/{.hive/src/resources/_dev/endpoints/triggerSchedulerHandler.js → framework/src/resources/_dev/endpoints/triggerSchedulerHandler.ts} +2 -1
- package/framework/src/resources/health/endpoints/get.ts +14 -0
- package/{.hive/src/resources/schemaMappings/schemaMappings.schema.js → framework/src/resources/schemaMappings/schemaMappings.schema.ts} +1 -1
- package/{.hive/src/routes/index.js → framework/src/routes/index.ts} +23 -27
- package/framework/src/schema.ts +3 -0
- package/{.hive/src/services/emailService.js → framework/src/services/emailService.ts} +1 -1
- package/{.hive/src/socketIo.js → framework/src/socketIo.ts} +1 -1
- package/{.hive → framework}/tsconfig.json +17 -13
- package/package.json +43 -51
- package/starter/hive/autoMap/schemaMappings.json +1 -0
- package/starter/hive/config/.env.example +11 -0
- package/starter/hive/config/app.ts +19 -0
- package/{.hive/src/services/setCookie.js → starter/hive/helpers/setCookie.ts} +1 -2
- package/starter/hive/middlewares/_global.ts +9 -0
- package/{.hive/src/middlewares/attachUser.js → starter/hive/middlewares/attachUser.ts} +2 -2
- package/{.hive/src/middlewares/shouldExist.js → starter/hive/middlewares/shouldExist.ts} +1 -1
- package/{.hive/src/middlewares/shouldNotExist.js → starter/hive/middlewares/shouldNotExist.ts} +1 -1
- package/starter/hive/resources/files/endpoints/upload.ts +25 -0
- package/starter/hive/resources/files/files.schema.ts +20 -0
- package/{.hive/src/resources/tokens/methods/storeToken.js → starter/hive/resources/tokens/methods/storeToken.ts} +3 -3
- package/{.hive/src/resources/tokens/tokens.schema.js → starter/hive/resources/tokens/tokens.schema.ts} +1 -2
- package/starter/hive/resources/users/endpoints/getCurrentUser.ts +12 -0
- package/starter/hive/resources/users/endpoints/getUserProfile.ts +17 -0
- package/{.hive/src/resources/users/users.schema.js → starter/hive/resources/users/users.schema.ts} +1 -2
- package/starter/hive/services/cloudStorage.ts +102 -0
- package/starter/package.json +9 -97
- package/starter/tsconfig.json +16 -20
- package/.cursor/commands/deslop.md +0 -12
- package/.hive/.cursor/commands/add-service.md +0 -188
- package/.hive/.cursor/skills/hive-overview/SKILL.md +0 -50
- package/.hive/.cursor/skills/hive-service/SKILL.md +0 -90
- package/.hive/bin/start.sh +0 -2
- package/.hive/package.json +0 -98
- package/.hive/src/logger.js +0 -43
- package/.hive/src/middlewares/global/tryToAttachUser.js +0 -33
- package/.hive/src/resources/health/endpoints/get.js +0 -19
- package/.hive/src/resources/tokens/methods/setToken.js +0 -8
- package/.hive/src/resources/users/endpoints/getCurrentUser.js +0 -14
- package/.hive/src/resources/users/endpoints/getUserProfile.js +0 -19
- package/.hive/src/resources/users/methods/ensureUserCreated.js +0 -68
- package/.hive/src/security.util.js +0 -38
- package/.hive/src/services/globalTest.js +0 -0
- package/cli/helpers/docker.js +0 -59
- package/cli/helpers/envCheck.js +0 -127
- package/cli/helpers/findPort.js +0 -32
- package/starter/.babelrc +0 -3
- package/starter/.cursor/commands/add-endpoint.md +0 -262
- package/starter/.cursor/commands/add-handler.md +0 -137
- package/starter/.cursor/commands/add-middleware.md +0 -95
- package/starter/.cursor/commands/add-resource.md +0 -71
- package/starter/.cursor/commands/add-scheduler.md +0 -138
- package/starter/.cursor/commands/add-service.md +0 -188
- package/starter/.cursor/skills/hive-auth/SKILL.md +0 -134
- package/starter/.cursor/skills/hive-database/SKILL.md +0 -103
- package/starter/.cursor/skills/hive-endpoint/SKILL.md +0 -103
- package/starter/.cursor/skills/hive-handler/SKILL.md +0 -88
- package/starter/.cursor/skills/hive-mapping/SKILL.md +0 -85
- package/starter/.cursor/skills/hive-middleware/SKILL.md +0 -104
- package/starter/.cursor/skills/hive-overview/SKILL.md +0 -50
- package/starter/.cursor/skills/hive-scheduler/SKILL.md +0 -94
- package/starter/.cursor/skills/hive-schema/SKILL.md +0 -73
- package/starter/.cursor/skills/hive-service/SKILL.md +0 -90
- package/starter/.dockerignore +0 -1
- package/starter/Dockerfile +0 -22
- package/starter/Dockerfile.dev +0 -33
- package/starter/Dockerfile.prod +0 -29
- package/starter/README.md +0 -11
- package/starter/bin/deploy.sh +0 -5
- package/starter/bin/start.sh +0 -2
- package/starter/bootstrap-hive.js +0 -118
- package/starter/deploy/api/Chart.yaml +0 -6
- package/starter/deploy/api/staging.yaml +0 -3
- package/starter/deploy/api/templates/deployment.yaml +0 -44
- package/starter/deploy/api/templates/ingress.yaml +0 -26
- package/starter/deploy/api/templates/service.yaml +0 -14
- package/starter/deploy/script/Dockerfile +0 -39
- package/starter/deploy/script/package-lock.json +0 -1499
- package/starter/deploy/script/package.json +0 -12
- package/starter/deploy/script/src/config.js +0 -48
- package/starter/deploy/script/src/index.js +0 -108
- package/starter/deploy/script/src/util.js +0 -19
- package/starter/initial-data.json +0 -176
- package/starter/loader.mjs +0 -40
- package/starter/package-lock.json +0 -13492
- package/starter/register.mjs +0 -6
- package/starter/ship_logo.png +0 -0
- package/starter/src/app-config/app.js +0 -3
- package/starter/src/app-config/assertEnv.js +0 -15
- package/starter/src/app-config/index.js +0 -65
- package/starter/src/app.js +0 -65
- package/starter/src/assets/emails/components/header.mjml +0 -13
- package/starter/src/assets/emails/dist/.gitkeep +0 -0
- package/starter/src/assets/emails/signup-welcome.mjml +0 -34
- package/starter/src/assets/emails/styles/index.mjml +0 -77
- package/starter/src/autoMap/addHandlers.js +0 -142
- package/starter/src/autoMap/getDependentFields.js +0 -37
- package/starter/src/autoMap/mapSchema.js +0 -99
- package/starter/src/autoMap/schemaMappings.js +0 -13
- package/starter/src/autoMap/schemaMappings.json +0 -3
- package/starter/src/bullMqBus.js +0 -21
- package/starter/src/bullMqWrapper.js +0 -23
- package/starter/src/db.js +0 -53
- package/starter/src/emails/MyEmailComponent.jsx +0 -14
- package/starter/src/emails/compiled/MyEmailComponent.js +0 -18
- package/starter/src/emails/compiled/compiled/MyEmailComponent.js +0 -18
- package/starter/src/helpers/db/ifUpdated.js +0 -22
- package/starter/src/helpers/esm.js +0 -56
- package/starter/src/helpers/getMiddlewares.js +0 -41
- package/starter/src/helpers/getResourceEndpoints.js +0 -31
- package/starter/src/helpers/getResources.js +0 -35
- package/starter/src/helpers/getSchemas.js +0 -53
- package/starter/src/helpers/importHandlers.js +0 -20
- package/starter/src/helpers/isZodArray.js +0 -13
- package/starter/src/helpers/prettierFormat.js +0 -8
- package/starter/src/helpers/schema/db.schema.js +0 -9
- package/starter/src/helpers/schema/pagination.schema.js +0 -14
- package/starter/src/ioEmitter.js +0 -9
- package/starter/src/jsconfig.json +0 -5
- package/starter/src/lib/node-mongo/.github/workflows/npm-publish.yml +0 -32
- package/starter/src/lib/node-mongo/API.md +0 -654
- package/starter/src/lib/node-mongo/CHANGELOG.md +0 -98
- package/starter/src/lib/node-mongo/README.md +0 -97
- package/starter/src/lib/node-mongo/package-lock.json +0 -3682
- package/starter/src/lib/node-mongo/package.json +0 -74
- package/starter/src/lib/node-mongo/src/index.js +0 -64
- package/starter/src/lib/node-mongo/src/mongo-query-service.js +0 -78
- package/starter/src/lib/node-mongo/src/mongo-service-error.js +0 -15
- package/starter/src/lib/node-mongo/src/mongo-service.js +0 -303
- package/starter/src/middlewares/attachUser.js +0 -41
- package/starter/src/middlewares/global/extractUserTokens.js +0 -15
- package/starter/src/middlewares/global/tryToAttachUser.js +0 -33
- package/starter/src/middlewares/isAuthorized.js +0 -18
- package/starter/src/middlewares/shouldExist.js +0 -37
- package/starter/src/middlewares/shouldNotExist.js +0 -19
- package/starter/src/middlewares/uploadFile.js +0 -5
- package/starter/src/middlewares/validate.js +0 -32
- package/starter/src/migrations/migration.js +0 -8
- package/starter/src/migrations/migration.service.js +0 -76
- package/starter/src/migrations/migrations/1.js +0 -22
- package/starter/src/migrations/migrations-log/migration-log.schema.js +0 -13
- package/starter/src/migrations/migrations-log/migration-log.service.js +0 -50
- package/starter/src/migrations/migrations.schema.js +0 -6
- package/starter/src/migrations/migrator.js +0 -75
- package/starter/src/migrator.js +0 -3
- package/starter/src/resources/_dev/endpoints/triggerSchedulerHandler.js +0 -32
- package/starter/src/resources/health/endpoints/get.js +0 -19
- package/starter/src/resources/schemaMappings/schemaMappings.schema.js +0 -6
- package/starter/src/resources/tokens/methods/generateSecureToken.js +0 -9
- package/starter/src/resources/tokens/methods/setToken.js +0 -8
- package/starter/src/resources/tokens/methods/storeToken.js +0 -35
- package/starter/src/resources/tokens/tokens.schema.js +0 -11
- package/starter/src/resources/users/endpoints/getCurrentUser.js +0 -14
- package/starter/src/resources/users/endpoints/getUserProfile.js +0 -19
- package/starter/src/resources/users/handlers/test.js +0 -1
- package/starter/src/resources/users/methods/ensureUserCreated.js +0 -68
- package/starter/src/resources/users/users.schema.js +0 -16
- package/starter/src/routes/index.js +0 -172
- package/starter/src/routes/middlewares/attachCustomErrors.js +0 -28
- package/starter/src/routes/middlewares/routeErrorHandler.js +0 -27
- package/starter/src/scheduler.js +0 -35
- package/starter/src/security.util.js +0 -38
- package/starter/src/services/emailService.js +0 -15
- package/starter/src/services/globalTest.js +0 -0
- package/starter/src/services/setCookie.js +0 -21
- package/starter/src/socketIo.js +0 -99
- package/test-app/.cursor/commands/add-endpoint.md +0 -262
- package/test-app/.cursor/commands/add-handler.md +0 -137
- package/test-app/.cursor/commands/add-middleware.md +0 -95
- package/test-app/.cursor/commands/add-resource.md +0 -71
- package/test-app/.cursor/commands/add-scheduler.md +0 -138
- package/test-app/.cursor/skills/hive-auth/SKILL.md +0 -134
- package/test-app/.cursor/skills/hive-database/SKILL.md +0 -103
- package/test-app/.cursor/skills/hive-endpoint/SKILL.md +0 -103
- package/test-app/.cursor/skills/hive-handler/SKILL.md +0 -88
- package/test-app/.cursor/skills/hive-mapping/SKILL.md +0 -85
- package/test-app/.cursor/skills/hive-middleware/SKILL.md +0 -104
- package/test-app/.cursor/skills/hive-scheduler/SKILL.md +0 -94
- package/test-app/.cursor/skills/hive-schema/SKILL.md +0 -73
- package/test-app/package-lock.json +0 -462
- package/test-app/package.json +0 -21
- /package/{.hive → framework}/.babelrc +0 -0
- /package/{.hive → framework}/.cursor/commands/add-endpoint.md +0 -0
- /package/{.hive → framework}/.cursor/commands/add-handler.md +0 -0
- /package/{.hive → framework}/.cursor/commands/add-middleware.md +0 -0
- /package/{.hive → framework}/.cursor/commands/add-resource.md +0 -0
- /package/{.hive → framework}/.cursor/commands/add-scheduler.md +0 -0
- /package/{.hive → framework}/.cursor/skills/hive-auth/SKILL.md +0 -0
- /package/{.hive → framework}/.cursor/skills/hive-database/SKILL.md +0 -0
- /package/{.hive → framework}/.cursor/skills/hive-endpoint/SKILL.md +0 -0
- /package/{.hive → framework}/.cursor/skills/hive-handler/SKILL.md +0 -0
- /package/{.hive → framework}/.cursor/skills/hive-mapping/SKILL.md +0 -0
- /package/{.hive → framework}/.cursor/skills/hive-middleware/SKILL.md +0 -0
- /package/{.hive → framework}/.cursor/skills/hive-scheduler/SKILL.md +0 -0
- /package/{.hive → framework}/.cursor/skills/hive-schema/SKILL.md +0 -0
- /package/{.hive → framework}/.dockerignore +0 -0
- /package/{.hive → framework}/Dockerfile +0 -0
- /package/{.hive → framework}/Dockerfile.dev +0 -0
- /package/{.hive → framework}/Dockerfile.prod +0 -0
- /package/{.hive → framework}/README.md +0 -0
- /package/{.hive → framework}/bin/deploy.sh +0 -0
- /package/{.hive → framework}/deploy/api/Chart.yaml +0 -0
- /package/{.hive → framework}/deploy/api/staging.yaml +0 -0
- /package/{.hive → framework}/deploy/api/templates/deployment.yaml +0 -0
- /package/{.hive → framework}/deploy/api/templates/ingress.yaml +0 -0
- /package/{.hive → framework}/deploy/api/templates/service.yaml +0 -0
- /package/{.hive → framework}/deploy/script/Dockerfile +0 -0
- /package/{.hive → framework}/deploy/script/package-lock.json +0 -0
- /package/{.hive → framework}/deploy/script/package.json +0 -0
- /package/{.hive/deploy/script/src/config.js → framework/deploy/script/src/config.ts} +0 -0
- /package/{.hive/deploy/script/src/index.js → framework/deploy/script/src/index.ts} +0 -0
- /package/{.hive/deploy/script/src/util.js → framework/deploy/script/src/util.ts} +0 -0
- /package/{.hive → framework}/initial-data.json +0 -0
- /package/{.hive → framework}/ship_logo.png +0 -0
- /package/{.hive → framework}/src/assets/emails/components/header.mjml +0 -0
- /package/{.hive → framework}/src/assets/emails/dist/.gitkeep +0 -0
- /package/{.hive → framework}/src/assets/emails/signup-welcome.mjml +0 -0
- /package/{.hive → framework}/src/assets/emails/styles/index.mjml +0 -0
- /package/{.hive/src/autoMap/addHandlers.js → framework/src/autoMap/addHandlers.ts} +0 -0
- /package/{.hive/src/autoMap/getDependentFields.js → framework/src/autoMap/getDependentFields.ts} +0 -0
- /package/{.hive/src/autoMap/mapSchema.js → framework/src/autoMap/mapSchema.ts} +0 -0
- /package/{.hive → framework}/src/autoMap/schemaMappings.json +0 -0
- /package/{.hive/src/autoMap/schemaMappings.js → framework/src/autoMap/schemaMappings.ts} +0 -0
- /package/{.hive/src/helpers/schema/db.schema.js → framework/src/common/schema/db.schema.ts} +0 -0
- /package/{.hive/src/helpers/schema/pagination.schema.js → framework/src/common/schema/pagination.schema.ts} +0 -0
- /package/{.hive/src/app-config/app.js → framework/src/config/app.ts} +0 -0
- /package/{.hive/src/app-config/assertEnv.js → framework/src/config/assertEnv.ts} +0 -0
- /package/{.hive/src/emails/MyEmailComponent.jsx → framework/src/emails/MyEmailComponent.tsx} +0 -0
- /package/{.hive/src/emails/compiled/MyEmailComponent.js → framework/src/emails/compiled/MyEmailComponent.ts} +0 -0
- /package/{.hive/src/emails/compiled/compiled/MyEmailComponent.js → framework/src/emails/compiled/compiled/MyEmailComponent.ts} +0 -0
- /package/{.hive/src/helpers/db/ifUpdated.js → framework/src/helpers/db/ifUpdated.ts} +0 -0
- /package/{.hive/src/helpers/importHandlers.js → framework/src/helpers/importHandlers.ts} +0 -0
- /package/{.hive/src/helpers/isZodArray.js → framework/src/helpers/isZodArray.ts} +0 -0
- /package/{.hive/src/helpers/prettierFormat.js → framework/src/helpers/prettierFormat.ts} +0 -0
- /package/{.hive → framework}/src/jsconfig.json +0 -0
- /package/{.hive → framework}/src/lib/node-mongo/.github/workflows/npm-publish.yml +0 -0
- /package/{.hive → framework}/src/lib/node-mongo/API.md +0 -0
- /package/{.hive → framework}/src/lib/node-mongo/CHANGELOG.md +0 -0
- /package/{.hive → framework}/src/lib/node-mongo/README.md +0 -0
- /package/{.hive → framework}/src/lib/node-mongo/package-lock.json +0 -0
- /package/{.hive → framework}/src/lib/node-mongo/package.json +0 -0
- /package/{.hive/src/lib/node-mongo/src/index.js → framework/src/lib/node-mongo/src/index.ts} +0 -0
- /package/{.hive/src/lib/node-mongo/src/mongo-service-error.js → framework/src/lib/node-mongo/src/mongo-service-error.ts} +0 -0
- /package/{.hive/src/middlewares/allowNoAuth.js → framework/src/middlewares/allowNoAuth.ts} +0 -0
- /package/{.hive/src/middlewares/global/extractUserTokens.js → framework/src/middlewares/global/extractUserTokens.ts} +0 -0
- /package/{.hive/src/middlewares/validate.js → framework/src/middlewares/validate.ts} +0 -0
- /package/{.hive/src/migrations/migration.service.js → framework/src/migrations/migration.service.ts} +0 -0
- /package/{.hive/src/migrations/migration.js → framework/src/migrations/migration.ts} +0 -0
- /package/{.hive/src/migrations/migrations/1.js → framework/src/migrations/migrations/1.ts} +0 -0
- /package/{.hive/src/migrations/migrator.js → framework/src/migrations/migrator.ts} +0 -0
- /package/{.hive/src/migrator.js → framework/src/migrator.ts} +0 -0
- /package/{.hive/src/routes/middlewares/attachCustomErrors.js → framework/src/routes/middlewares/attachCustomErrors.ts} +0 -0
- /package/{.hive/src/routes/middlewares/routeErrorHandler.js → framework/src/routes/middlewares/routeErrorHandler.ts} +0 -0
- /package/{.hive/src/scheduler/handlers/sendDailyReport.example.js → framework/src/scheduler/handlers/sendDailyReport.example.ts} +0 -0
- /package/{.hive/src/scheduler.js → framework/src/scheduler.ts} +0 -0
- /package/starter/{src/middlewares/allowNoAuth.js → hive/middlewares/allowNoAuth.ts} +0 -0
- /package/{.hive/src/middlewares/isAuthorized.js → starter/hive/middlewares/isAuthorized.ts} +0 -0
- /package/{.hive/src/middlewares/uploadFile.js → starter/hive/middlewares/uploadFile.ts} +0 -0
- /package/{.hive/src/resources/tokens/methods/generateSecureToken.js → starter/hive/resources/tokens/methods/generateSecureToken.ts} +0 -0
- /package/{.hive/src/resources/users/handlers/test.js → starter/hive/resources/users/handlers/test.ts} +0 -0
- /package/starter/{src/scheduler/handlers/sendDailyReport.example.js → hive/scheduler/handlers/dailyExample.ts} +0 -0
|
@@ -1,462 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "my-hive-app",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "my-hive-app",
|
|
9
|
-
"version": "1.0.0",
|
|
10
|
-
"license": "ISC",
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"@paralect/hive": "file:.."
|
|
13
|
-
},
|
|
14
|
-
"devDependencies": {
|
|
15
|
-
"nodemon": "^3.1.4"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"..": {
|
|
19
|
-
"name": "@paralect/hive",
|
|
20
|
-
"version": "0.1.50-alpha.0",
|
|
21
|
-
"license": "MIT",
|
|
22
|
-
"dependencies": {
|
|
23
|
-
"@koa/cors": "3.1.0",
|
|
24
|
-
"@koa/multer": "3.0.0",
|
|
25
|
-
"@koa/router": "10.1.1",
|
|
26
|
-
"@paralect/node-mongo": "2.1.1",
|
|
27
|
-
"@react-email/components": "^0.0.20",
|
|
28
|
-
"@react-email/render": "^0.0.16",
|
|
29
|
-
"@sendgrid/mail": "7.6.1",
|
|
30
|
-
"@socket.io/redis-adapter": "7.1.0",
|
|
31
|
-
"@socket.io/redis-emitter": "4.1.1",
|
|
32
|
-
"app-module-path": "2.2.0",
|
|
33
|
-
"aws-sdk": "2.1080.0",
|
|
34
|
-
"axios": "^1.7.2",
|
|
35
|
-
"bcryptjs": "2.4.3",
|
|
36
|
-
"bullmq": "^5.10.3",
|
|
37
|
-
"commander": "^12.1.0",
|
|
38
|
-
"dotenv": "16.0.0",
|
|
39
|
-
"eslint-config-prettier": "8.5.0",
|
|
40
|
-
"execa": "^4.1.0",
|
|
41
|
-
"fs-extra": "^11.2.0",
|
|
42
|
-
"handlebars": "4.7.7",
|
|
43
|
-
"inquirer": "^8.2.6",
|
|
44
|
-
"joi": "^17.13.3",
|
|
45
|
-
"koa": "2.13.4",
|
|
46
|
-
"koa-bodyparser": "4.3.0",
|
|
47
|
-
"koa-helmet": "6.1.0",
|
|
48
|
-
"koa-logger": "3.2.1",
|
|
49
|
-
"koa-mount": "4.0.0",
|
|
50
|
-
"koa-qs": "3.0.0",
|
|
51
|
-
"lodash": "4.17.21",
|
|
52
|
-
"mjml": "4.12.0",
|
|
53
|
-
"mkdirp": "^1.0.4",
|
|
54
|
-
"moment": "2.29.1",
|
|
55
|
-
"moment-duration-format": "2.3.2",
|
|
56
|
-
"multer": "1.4.4",
|
|
57
|
-
"node-schedule": "2.1.0",
|
|
58
|
-
"nodemailer": "^6.9.14",
|
|
59
|
-
"nodemon": "2.0.15",
|
|
60
|
-
"prettier": "2.6.2",
|
|
61
|
-
"psl": "1.8.0",
|
|
62
|
-
"redis": "3.1.2",
|
|
63
|
-
"require-dir": "1.2.0",
|
|
64
|
-
"slug": "^9.1.0",
|
|
65
|
-
"socket.io": "4.4.1",
|
|
66
|
-
"socket.io-emitter": "3.2.0",
|
|
67
|
-
"tail": "2.2.4",
|
|
68
|
-
"tsx": "^4.16.2",
|
|
69
|
-
"typescript": "^5.5.4",
|
|
70
|
-
"winston": "3.6.0",
|
|
71
|
-
"zod": "^3.23.8"
|
|
72
|
-
},
|
|
73
|
-
"bin": {
|
|
74
|
-
"hive": "cli/hive.js"
|
|
75
|
-
},
|
|
76
|
-
"devDependencies": {
|
|
77
|
-
"eslint": "8.9.0",
|
|
78
|
-
"eslint-config-airbnb-base": "15.0.0",
|
|
79
|
-
"eslint-plugin-import": "2.25.4",
|
|
80
|
-
"husky": "7.0.4",
|
|
81
|
-
"lint-staged": "12.3.4"
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
"node_modules/@paralect/hive": {
|
|
85
|
-
"resolved": "..",
|
|
86
|
-
"link": true
|
|
87
|
-
},
|
|
88
|
-
"node_modules/anymatch": {
|
|
89
|
-
"version": "3.1.3",
|
|
90
|
-
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
91
|
-
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
|
92
|
-
"dev": true,
|
|
93
|
-
"license": "ISC",
|
|
94
|
-
"dependencies": {
|
|
95
|
-
"normalize-path": "^3.0.0",
|
|
96
|
-
"picomatch": "^2.0.4"
|
|
97
|
-
},
|
|
98
|
-
"engines": {
|
|
99
|
-
"node": ">= 8"
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
"node_modules/balanced-match": {
|
|
103
|
-
"version": "1.0.2",
|
|
104
|
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
105
|
-
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
106
|
-
"dev": true,
|
|
107
|
-
"license": "MIT"
|
|
108
|
-
},
|
|
109
|
-
"node_modules/binary-extensions": {
|
|
110
|
-
"version": "2.3.0",
|
|
111
|
-
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
112
|
-
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
113
|
-
"dev": true,
|
|
114
|
-
"license": "MIT",
|
|
115
|
-
"engines": {
|
|
116
|
-
"node": ">=8"
|
|
117
|
-
},
|
|
118
|
-
"funding": {
|
|
119
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
120
|
-
}
|
|
121
|
-
},
|
|
122
|
-
"node_modules/brace-expansion": {
|
|
123
|
-
"version": "1.1.12",
|
|
124
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
|
125
|
-
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
126
|
-
"dev": true,
|
|
127
|
-
"license": "MIT",
|
|
128
|
-
"dependencies": {
|
|
129
|
-
"balanced-match": "^1.0.0",
|
|
130
|
-
"concat-map": "0.0.1"
|
|
131
|
-
}
|
|
132
|
-
},
|
|
133
|
-
"node_modules/braces": {
|
|
134
|
-
"version": "3.0.3",
|
|
135
|
-
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
136
|
-
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
137
|
-
"dev": true,
|
|
138
|
-
"license": "MIT",
|
|
139
|
-
"dependencies": {
|
|
140
|
-
"fill-range": "^7.1.1"
|
|
141
|
-
},
|
|
142
|
-
"engines": {
|
|
143
|
-
"node": ">=8"
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"node_modules/chokidar": {
|
|
147
|
-
"version": "3.6.0",
|
|
148
|
-
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
|
149
|
-
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
|
150
|
-
"dev": true,
|
|
151
|
-
"license": "MIT",
|
|
152
|
-
"dependencies": {
|
|
153
|
-
"anymatch": "~3.1.2",
|
|
154
|
-
"braces": "~3.0.2",
|
|
155
|
-
"glob-parent": "~5.1.2",
|
|
156
|
-
"is-binary-path": "~2.1.0",
|
|
157
|
-
"is-glob": "~4.0.1",
|
|
158
|
-
"normalize-path": "~3.0.0",
|
|
159
|
-
"readdirp": "~3.6.0"
|
|
160
|
-
},
|
|
161
|
-
"engines": {
|
|
162
|
-
"node": ">= 8.10.0"
|
|
163
|
-
},
|
|
164
|
-
"funding": {
|
|
165
|
-
"url": "https://paulmillr.com/funding/"
|
|
166
|
-
},
|
|
167
|
-
"optionalDependencies": {
|
|
168
|
-
"fsevents": "~2.3.2"
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
"node_modules/chokidar/node_modules/glob-parent": {
|
|
172
|
-
"version": "5.1.2",
|
|
173
|
-
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
174
|
-
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
175
|
-
"dev": true,
|
|
176
|
-
"license": "ISC",
|
|
177
|
-
"dependencies": {
|
|
178
|
-
"is-glob": "^4.0.1"
|
|
179
|
-
},
|
|
180
|
-
"engines": {
|
|
181
|
-
"node": ">= 6"
|
|
182
|
-
}
|
|
183
|
-
},
|
|
184
|
-
"node_modules/concat-map": {
|
|
185
|
-
"version": "0.0.1",
|
|
186
|
-
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
187
|
-
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
|
188
|
-
"dev": true,
|
|
189
|
-
"license": "MIT"
|
|
190
|
-
},
|
|
191
|
-
"node_modules/debug": {
|
|
192
|
-
"version": "4.4.3",
|
|
193
|
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
194
|
-
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
195
|
-
"dev": true,
|
|
196
|
-
"license": "MIT",
|
|
197
|
-
"dependencies": {
|
|
198
|
-
"ms": "^2.1.3"
|
|
199
|
-
},
|
|
200
|
-
"engines": {
|
|
201
|
-
"node": ">=6.0"
|
|
202
|
-
},
|
|
203
|
-
"peerDependenciesMeta": {
|
|
204
|
-
"supports-color": {
|
|
205
|
-
"optional": true
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
},
|
|
209
|
-
"node_modules/fill-range": {
|
|
210
|
-
"version": "7.1.1",
|
|
211
|
-
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
212
|
-
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
213
|
-
"dev": true,
|
|
214
|
-
"license": "MIT",
|
|
215
|
-
"dependencies": {
|
|
216
|
-
"to-regex-range": "^5.0.1"
|
|
217
|
-
},
|
|
218
|
-
"engines": {
|
|
219
|
-
"node": ">=8"
|
|
220
|
-
}
|
|
221
|
-
},
|
|
222
|
-
"node_modules/fsevents": {
|
|
223
|
-
"version": "2.3.3",
|
|
224
|
-
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
225
|
-
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
226
|
-
"dev": true,
|
|
227
|
-
"hasInstallScript": true,
|
|
228
|
-
"license": "MIT",
|
|
229
|
-
"optional": true,
|
|
230
|
-
"os": [
|
|
231
|
-
"darwin"
|
|
232
|
-
],
|
|
233
|
-
"engines": {
|
|
234
|
-
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
235
|
-
}
|
|
236
|
-
},
|
|
237
|
-
"node_modules/ignore-by-default": {
|
|
238
|
-
"version": "1.0.1",
|
|
239
|
-
"resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
|
|
240
|
-
"integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
|
|
241
|
-
"dev": true,
|
|
242
|
-
"license": "ISC"
|
|
243
|
-
},
|
|
244
|
-
"node_modules/is-binary-path": {
|
|
245
|
-
"version": "2.1.0",
|
|
246
|
-
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
247
|
-
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
248
|
-
"dev": true,
|
|
249
|
-
"license": "MIT",
|
|
250
|
-
"dependencies": {
|
|
251
|
-
"binary-extensions": "^2.0.0"
|
|
252
|
-
},
|
|
253
|
-
"engines": {
|
|
254
|
-
"node": ">=8"
|
|
255
|
-
}
|
|
256
|
-
},
|
|
257
|
-
"node_modules/is-extglob": {
|
|
258
|
-
"version": "2.1.1",
|
|
259
|
-
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
260
|
-
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
261
|
-
"dev": true,
|
|
262
|
-
"license": "MIT",
|
|
263
|
-
"engines": {
|
|
264
|
-
"node": ">=0.10.0"
|
|
265
|
-
}
|
|
266
|
-
},
|
|
267
|
-
"node_modules/is-glob": {
|
|
268
|
-
"version": "4.0.3",
|
|
269
|
-
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
270
|
-
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
271
|
-
"dev": true,
|
|
272
|
-
"license": "MIT",
|
|
273
|
-
"dependencies": {
|
|
274
|
-
"is-extglob": "^2.1.1"
|
|
275
|
-
},
|
|
276
|
-
"engines": {
|
|
277
|
-
"node": ">=0.10.0"
|
|
278
|
-
}
|
|
279
|
-
},
|
|
280
|
-
"node_modules/is-number": {
|
|
281
|
-
"version": "7.0.0",
|
|
282
|
-
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
283
|
-
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
284
|
-
"dev": true,
|
|
285
|
-
"license": "MIT",
|
|
286
|
-
"engines": {
|
|
287
|
-
"node": ">=0.12.0"
|
|
288
|
-
}
|
|
289
|
-
},
|
|
290
|
-
"node_modules/minimatch": {
|
|
291
|
-
"version": "3.1.2",
|
|
292
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
|
293
|
-
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
294
|
-
"dev": true,
|
|
295
|
-
"license": "ISC",
|
|
296
|
-
"dependencies": {
|
|
297
|
-
"brace-expansion": "^1.1.7"
|
|
298
|
-
},
|
|
299
|
-
"engines": {
|
|
300
|
-
"node": "*"
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
"node_modules/ms": {
|
|
304
|
-
"version": "2.1.3",
|
|
305
|
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
306
|
-
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
307
|
-
"dev": true,
|
|
308
|
-
"license": "MIT"
|
|
309
|
-
},
|
|
310
|
-
"node_modules/nodemon": {
|
|
311
|
-
"version": "3.1.11",
|
|
312
|
-
"resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.11.tgz",
|
|
313
|
-
"integrity": "sha512-is96t8F/1//UHAjNPHpbsNY46ELPpftGUoSVNXwUfMk/qdjSylYrWSu1XavVTBOn526kFiOR733ATgNBCQyH0g==",
|
|
314
|
-
"dev": true,
|
|
315
|
-
"license": "MIT",
|
|
316
|
-
"dependencies": {
|
|
317
|
-
"chokidar": "^3.5.2",
|
|
318
|
-
"debug": "^4",
|
|
319
|
-
"ignore-by-default": "^1.0.1",
|
|
320
|
-
"minimatch": "^3.1.2",
|
|
321
|
-
"pstree.remy": "^1.1.8",
|
|
322
|
-
"semver": "^7.5.3",
|
|
323
|
-
"simple-update-notifier": "^2.0.0",
|
|
324
|
-
"supports-color": "^5.5.0",
|
|
325
|
-
"touch": "^3.1.0",
|
|
326
|
-
"undefsafe": "^2.0.5"
|
|
327
|
-
},
|
|
328
|
-
"bin": {
|
|
329
|
-
"nodemon": "bin/nodemon.js"
|
|
330
|
-
},
|
|
331
|
-
"engines": {
|
|
332
|
-
"node": ">=10"
|
|
333
|
-
},
|
|
334
|
-
"funding": {
|
|
335
|
-
"type": "opencollective",
|
|
336
|
-
"url": "https://opencollective.com/nodemon"
|
|
337
|
-
}
|
|
338
|
-
},
|
|
339
|
-
"node_modules/nodemon/node_modules/has-flag": {
|
|
340
|
-
"version": "3.0.0",
|
|
341
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
|
342
|
-
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
|
|
343
|
-
"dev": true,
|
|
344
|
-
"license": "MIT",
|
|
345
|
-
"engines": {
|
|
346
|
-
"node": ">=4"
|
|
347
|
-
}
|
|
348
|
-
},
|
|
349
|
-
"node_modules/nodemon/node_modules/supports-color": {
|
|
350
|
-
"version": "5.5.0",
|
|
351
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
|
352
|
-
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
|
353
|
-
"dev": true,
|
|
354
|
-
"license": "MIT",
|
|
355
|
-
"dependencies": {
|
|
356
|
-
"has-flag": "^3.0.0"
|
|
357
|
-
},
|
|
358
|
-
"engines": {
|
|
359
|
-
"node": ">=4"
|
|
360
|
-
}
|
|
361
|
-
},
|
|
362
|
-
"node_modules/normalize-path": {
|
|
363
|
-
"version": "3.0.0",
|
|
364
|
-
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
365
|
-
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
366
|
-
"dev": true,
|
|
367
|
-
"license": "MIT",
|
|
368
|
-
"engines": {
|
|
369
|
-
"node": ">=0.10.0"
|
|
370
|
-
}
|
|
371
|
-
},
|
|
372
|
-
"node_modules/picomatch": {
|
|
373
|
-
"version": "2.3.1",
|
|
374
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
375
|
-
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
376
|
-
"dev": true,
|
|
377
|
-
"license": "MIT",
|
|
378
|
-
"engines": {
|
|
379
|
-
"node": ">=8.6"
|
|
380
|
-
},
|
|
381
|
-
"funding": {
|
|
382
|
-
"url": "https://github.com/sponsors/jonschlinkert"
|
|
383
|
-
}
|
|
384
|
-
},
|
|
385
|
-
"node_modules/pstree.remy": {
|
|
386
|
-
"version": "1.1.8",
|
|
387
|
-
"resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
|
|
388
|
-
"integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
|
|
389
|
-
"dev": true,
|
|
390
|
-
"license": "MIT"
|
|
391
|
-
},
|
|
392
|
-
"node_modules/readdirp": {
|
|
393
|
-
"version": "3.6.0",
|
|
394
|
-
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
|
395
|
-
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
|
396
|
-
"dev": true,
|
|
397
|
-
"license": "MIT",
|
|
398
|
-
"dependencies": {
|
|
399
|
-
"picomatch": "^2.2.1"
|
|
400
|
-
},
|
|
401
|
-
"engines": {
|
|
402
|
-
"node": ">=8.10.0"
|
|
403
|
-
}
|
|
404
|
-
},
|
|
405
|
-
"node_modules/semver": {
|
|
406
|
-
"version": "7.7.3",
|
|
407
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
|
408
|
-
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
|
|
409
|
-
"dev": true,
|
|
410
|
-
"license": "ISC",
|
|
411
|
-
"bin": {
|
|
412
|
-
"semver": "bin/semver.js"
|
|
413
|
-
},
|
|
414
|
-
"engines": {
|
|
415
|
-
"node": ">=10"
|
|
416
|
-
}
|
|
417
|
-
},
|
|
418
|
-
"node_modules/simple-update-notifier": {
|
|
419
|
-
"version": "2.0.0",
|
|
420
|
-
"resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
|
|
421
|
-
"integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
|
|
422
|
-
"dev": true,
|
|
423
|
-
"license": "MIT",
|
|
424
|
-
"dependencies": {
|
|
425
|
-
"semver": "^7.5.3"
|
|
426
|
-
},
|
|
427
|
-
"engines": {
|
|
428
|
-
"node": ">=10"
|
|
429
|
-
}
|
|
430
|
-
},
|
|
431
|
-
"node_modules/to-regex-range": {
|
|
432
|
-
"version": "5.0.1",
|
|
433
|
-
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
434
|
-
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
435
|
-
"dev": true,
|
|
436
|
-
"license": "MIT",
|
|
437
|
-
"dependencies": {
|
|
438
|
-
"is-number": "^7.0.0"
|
|
439
|
-
},
|
|
440
|
-
"engines": {
|
|
441
|
-
"node": ">=8.0"
|
|
442
|
-
}
|
|
443
|
-
},
|
|
444
|
-
"node_modules/touch": {
|
|
445
|
-
"version": "3.1.1",
|
|
446
|
-
"resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
|
|
447
|
-
"integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
|
|
448
|
-
"dev": true,
|
|
449
|
-
"license": "ISC",
|
|
450
|
-
"bin": {
|
|
451
|
-
"nodetouch": "bin/nodetouch.js"
|
|
452
|
-
}
|
|
453
|
-
},
|
|
454
|
-
"node_modules/undefsafe": {
|
|
455
|
-
"version": "2.0.5",
|
|
456
|
-
"resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
|
|
457
|
-
"integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
|
|
458
|
-
"dev": true,
|
|
459
|
-
"license": "MIT"
|
|
460
|
-
}
|
|
461
|
-
}
|
|
462
|
-
}
|
package/test-app/package.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "my-hive-app",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"description": "Hive App",
|
|
5
|
-
"main": "src/app.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "hive prepare ./src",
|
|
8
|
-
"dev": "hive prepare ./src && HIVE_SRC=$PWD/src npm -C .hive run dev",
|
|
9
|
-
"start": "hive prepare ./src && HIVE_SRC=$PWD/src npm -C .hive run start",
|
|
10
|
-
"deploy-local": "hive build-local && hive deploy"
|
|
11
|
-
},
|
|
12
|
-
"keywords": [],
|
|
13
|
-
"author": "",
|
|
14
|
-
"license": "ISC",
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@paralect/hive": "file:.."
|
|
17
|
-
},
|
|
18
|
-
"devDependencies": {
|
|
19
|
-
"nodemon": "^3.1.4"
|
|
20
|
-
}
|
|
21
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{.hive/src/autoMap/getDependentFields.js → framework/src/autoMap/getDependentFields.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{.hive/src/emails/MyEmailComponent.jsx → framework/src/emails/MyEmailComponent.tsx}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{.hive/src/lib/node-mongo/src/index.js → framework/src/lib/node-mongo/src/index.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{.hive/src/migrations/migration.service.js → framework/src/migrations/migration.service.ts}
RENAMED
|
File without changes
|
|
File without changes
|