data-primals-engine 1.2.5 → 1.2.6-rc1

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.
Files changed (1) hide show
  1. package/package.json +120 -119
package/package.json CHANGED
@@ -1,119 +1,120 @@
1
- {
2
- "name": "data-primals-engine",
3
- "version": "1.2.5",
4
- "description": "data-primals-engine is a package responsible from handling large amount of data using MongoDB in a practical and performant way. It can also get workflow models working (for automation), and fully supports internationalisation. It also has integrated AI assistant.",
5
- "main": "src/engine.js",
6
- "type": "module",
7
- "scripts": {
8
- "preinstall": "npx force-resolutions",
9
- "dev": "concurrently \"npm:client\" \"npm:devserver\"",
10
- "prod": "npm run build-server && npm run server",
11
- "client": "cd client && npm run dev",
12
- "build-server": "vite build client --config client/vite.config.js --outDir dist",
13
- "build-client": "cd client && npm run build",
14
- "server": "cross-env NODE_ENV=production node server.js",
15
- "devserver": "npm run build-server && cross-env NODE_ENV=development PORT=7633 node server.js",
16
- "lint": "eslint .",
17
- "format": "prettier --write .",
18
- "clean": "rm -rf node_modules package-lock.json",
19
- "test": "cross-env MONGO_DB_URL=\"mongodb://localhost:27017\" PORT=7635 vitest --no-file-parallelism",
20
- "audit": "npm audit --audit-level=high",
21
- "migrate:create": "node src/migrate.js create",
22
- "migrate:up": "node src/migrate.js up",
23
- "migrate:down": "node src/migrate.js down",
24
- "migrate:revert": "node src/migrate.js revert",
25
- "migrate:status": "node src/migrate.js status"
26
- },
27
- "optionalDependencies": {
28
- "@rollup/rollup-linux-x64-gnu": "4.6.1"
29
- },
30
- "resolutions": {
31
- "tar-fs": "3.0.9",
32
- "on-headers": "1.1.0",
33
- "brace-expansion": "2.0.2",
34
- "prismjs": "1.30.0"
35
- },
36
- "repository": {
37
- "type": "git",
38
- "url": "https://github.com/anonympins/data-primals-engine.git"
39
- },
40
- "exports": {
41
- ".": "./src/index.js",
42
- "./modules/*": "./src/modules/*/index.js",
43
- "./client": "./client/index.js",
44
- "./*": "./src/*.js"
45
- },
46
- "peerDependencies": {
47
- "express": "^5.1.0",
48
- "react": ">=18.0.0",
49
- "react-query": ">=3.0.0"
50
- },
51
- "dependencies": {
52
- "@langchain/core": "^0.3.66",
53
- "@langchain/deepseek": "^0.1.0",
54
- "@langchain/google-genai": "^0.2.16",
55
- "@langchain/openai": "^0.6.3",
56
- "archiver": "^7.0.1",
57
- "aws-sdk": "^2.1692.0",
58
- "bcrypt": "^6.0.0",
59
- "body-parser": "^2.2.0",
60
- "chalk": "^5.4.1",
61
- "check-disk-space": "^3.4.0",
62
- "compression": "^1.8.1",
63
- "cookie-parser": "^1.4.7",
64
- "cronstrue": "^3.2.0",
65
- "csv-parse": "^6.1.0",
66
- "date-fns": "^4.1.0",
67
- "express-csrf-double-submit-cookie": "^2.0.0",
68
- "express-formidable": "^1.2.0",
69
- "express-mongo-sanitize": "^2.2.0",
70
- "express-rate-limit": "^8.0.1",
71
- "express-session": "^1.18.2",
72
- "i18next-browser-languagedetector": "^8.2.0",
73
- "isolated-vm": "^4.7.2",
74
- "juice": "^11.0.1",
75
- "mathjs": "^14.6.0",
76
- "mongodb": "^6.18.0",
77
- "node-cache": "^5.1.2",
78
- "node-schedule": "^2.1.1",
79
- "nodemailer": "^7.0.5",
80
- "openai": "^5.10.2",
81
- "process": "^0.11.10",
82
- "prop-types": "^15.8.1",
83
- "randomcolor": "^0.6.2",
84
- "react-i18next": "^15.6.1",
85
- "react-markdown": "^10.1.0",
86
- "read-excel-file": "^5.8.8",
87
- "request-ip": "^3.3.0",
88
- "sanitize-html": "^2.17.0",
89
- "sirv": "^3.0.1",
90
- "swagger-ui-express": "^5.0.1",
91
- "tar": "^7.4.3",
92
- "uniqid": "^5.4.0",
93
- "vitest": "^3.2.4",
94
- "yaml": "^2.8.0"
95
- },
96
- "devDependencies": {
97
- "@eslint/js": "^9.32.0",
98
- "concurrently": "^9.2.0",
99
- "cross-env": "^10.0.0",
100
- "eslint": "^9.32.0",
101
- "globals": "^16.3.0"
102
- },
103
- "subPackages": [
104
- "client"
105
- ],
106
- "keywords": [
107
- "data-driven engine",
108
- "headless CMS",
109
- "backend",
110
- "automation",
111
- "AWS S3",
112
- "MongoDB"
113
- ],
114
- "author": "anonympins",
115
- "license": "MIT",
116
- "engines": {
117
- "node": ">=20.0.0"
118
- }
119
- }
1
+ {
2
+ "name": "data-primals-engine",
3
+ "version": "1.2.6-rc1",
4
+ "description": "data-primals-engine is a package responsible from handling large amount of data using MongoDB in a practical and performant way. It can also get workflow models working (for automation), and fully supports internationalisation. It also has integrated AI assistant.",
5
+ "main": "src/engine.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "preinstall": "npx force-resolutions",
9
+ "dev": "concurrently \"npm:client\" \"npm:devserver\"",
10
+ "prod": "npm run build-server && npm run server",
11
+ "client": "cd client && npm run dev",
12
+ "build-server": "vite build client --config client/vite.config.js --outDir dist",
13
+ "build-client": "cd client && npm run build",
14
+ "server": "cross-env NODE_ENV=production node server.js",
15
+ "devserver": "npm run build-server && cross-env NODE_ENV=development PORT=7633 node server.js",
16
+ "lint": "eslint .",
17
+ "format": "prettier --write .",
18
+ "clean": "rm -rf node_modules package-lock.json",
19
+ "test": "cross-env MONGO_DB_URL=\"mongodb://localhost:27017\" PORT=7635 vitest --no-file-parallelism",
20
+ "audit": "npm audit --audit-level=high",
21
+ "migrate:create": "node src/migrate.js create",
22
+ "migrate:up": "node src/migrate.js up",
23
+ "migrate:down": "node src/migrate.js down",
24
+ "migrate:revert": "node src/migrate.js revert",
25
+ "migrate:status": "node src/migrate.js status"
26
+ },
27
+ "optionalDependencies": {
28
+ "@rollup/rollup-linux-x64-gnu": "4.6.1"
29
+ },
30
+ "resolutions": {
31
+ "tar-fs": "3.0.9",
32
+ "on-headers": "1.1.0",
33
+ "brace-expansion": "2.0.2",
34
+ "prismjs": "1.30.0"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/anonympins/data-primals-engine.git"
39
+ },
40
+ "exports": {
41
+ ".": "./src/index.js",
42
+ "./modules/*.js": "./src/modules/*.js",
43
+ "./modules/*": "./src/modules/*/index.js",
44
+ "./client": "./client/index.js",
45
+ "./*": "./src/*.js"
46
+ },
47
+ "peerDependencies": {
48
+ "express": "^5.1.0",
49
+ "react": ">=18.0.0",
50
+ "react-query": ">=3.0.0"
51
+ },
52
+ "dependencies": {
53
+ "@langchain/core": "^0.3.66",
54
+ "@langchain/deepseek": "^0.1.0",
55
+ "@langchain/google-genai": "^0.2.16",
56
+ "@langchain/openai": "^0.6.3",
57
+ "archiver": "^7.0.1",
58
+ "aws-sdk": "^2.1692.0",
59
+ "bcrypt": "^6.0.0",
60
+ "body-parser": "^2.2.0",
61
+ "chalk": "^5.4.1",
62
+ "check-disk-space": "^3.4.0",
63
+ "compression": "^1.8.1",
64
+ "cookie-parser": "^1.4.7",
65
+ "cronstrue": "^3.2.0",
66
+ "csv-parse": "^6.1.0",
67
+ "date-fns": "^4.1.0",
68
+ "express-csrf-double-submit-cookie": "^2.0.0",
69
+ "express-formidable": "^1.2.0",
70
+ "express-mongo-sanitize": "^2.2.0",
71
+ "express-rate-limit": "^8.0.1",
72
+ "express-session": "^1.18.2",
73
+ "i18next-browser-languagedetector": "^8.2.0",
74
+ "isolated-vm": "^4.7.2",
75
+ "juice": "^11.0.1",
76
+ "mathjs": "^14.6.0",
77
+ "mongodb": "^6.18.0",
78
+ "node-cache": "^5.1.2",
79
+ "node-schedule": "^2.1.1",
80
+ "nodemailer": "^7.0.5",
81
+ "openai": "^5.10.2",
82
+ "process": "^0.11.10",
83
+ "prop-types": "^15.8.1",
84
+ "randomcolor": "^0.6.2",
85
+ "react-i18next": "^15.6.1",
86
+ "react-markdown": "^10.1.0",
87
+ "read-excel-file": "^5.8.8",
88
+ "request-ip": "^3.3.0",
89
+ "sanitize-html": "^2.17.0",
90
+ "sirv": "^3.0.1",
91
+ "swagger-ui-express": "^5.0.1",
92
+ "tar": "^7.4.3",
93
+ "uniqid": "^5.4.0",
94
+ "vitest": "^3.2.4",
95
+ "yaml": "^2.8.0"
96
+ },
97
+ "devDependencies": {
98
+ "@eslint/js": "^9.32.0",
99
+ "concurrently": "^9.2.0",
100
+ "cross-env": "^10.0.0",
101
+ "eslint": "^9.32.0",
102
+ "globals": "^16.3.0"
103
+ },
104
+ "subPackages": [
105
+ "client"
106
+ ],
107
+ "keywords": [
108
+ "data-driven engine",
109
+ "headless CMS",
110
+ "backend",
111
+ "automation",
112
+ "AWS S3",
113
+ "MongoDB"
114
+ ],
115
+ "author": "anonympins",
116
+ "license": "MIT",
117
+ "engines": {
118
+ "node": ">=20.0.0"
119
+ }
120
+ }