@ilife-tech/react-application-flow-renderer 1.0.68 → 1.0.69

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/package.json CHANGED
@@ -1,129 +1,129 @@
1
- {
2
- "name": "@ilife-tech/react-application-flow-renderer",
3
- "private": false,
4
- "version": "1.0.68",
5
- "description": "A dynamic application flow renderer for React applications with Universal API support(sqv2.0)",
6
- "main": "dist/index.js",
7
- "module": "dist/index.esm.js",
8
- "types": "dist/index.d.ts",
9
- "files": [
10
- "dist",
11
- "README.md",
12
- "LICENSE"
13
- ],
14
- "scripts": {
15
- "start": "webpack serve --mode development --port 3010",
16
- "build": "webpack --mode production",
17
- "preview": "webpack serve --mode production",
18
- "// test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
19
- "// test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
20
- "// test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
21
- "// test:e2e": "playwright test",
22
- "lint": "eslint src --ext js,jsx",
23
- "lint:fix": "eslint src --ext js,jsx --fix",
24
- "format": "prettier --write \"src/**/*.{js,jsx,scss}\"",
25
- "prepare": "husky install",
26
- "prepublishOnly": "npm run build",
27
- "preversion": "npm run lint",
28
- "version": "npm run format && git add -A src",
29
- "postversion": "git push && git push --tags",
30
- "storybook": "storybook dev -p 6006",
31
- "build-storybook": "storybook build",
32
- "analyze": "ANALYZE=true npm run build",
33
- "generate-report": "node scripts/generate-dev-report.js"
34
- },
35
- "keywords": [
36
- "react",
37
- "form",
38
- "dynamic",
39
- "renderer",
40
- "universal-api",
41
- "form-builder",
42
- "react-component",
43
- "typescript"
44
- ],
45
- "author": "iLiFE Technologies",
46
- "license": "ISC",
47
- "repository": {
48
- "type": "git",
49
- "url": "https://github.com/iLife-Technologies/react-dynamic-form-renderer/"
50
- },
51
- "bugs": {
52
- "url": "https://github.com/iLife-Technologies/react-dynamic-form-renderer/issues"
53
- },
54
- "homepage": "https://github.com/iLife-Technologies/react-dynamic-form-renderer#readme",
55
- "dependencies": {
56
- "@emotion/react": "^11.14.0",
57
- "@emotion/styled": "^11.14.0",
58
- "@ilife-tech/react-section-renderer": "^1.0.22",
59
- "@mui/material": "^6.4.1",
60
- "dompurify": "^3.2.4",
61
- "imask": "^7.6.1",
62
- "inputmask": "^5.0.9",
63
- "prop-types": "^15.8.1",
64
- "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
65
- "react-datepicker": "^8.4.0",
66
- "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
67
- "react-imask": "^7.6.1",
68
- "react-select": "^5.8.0",
69
- "react-toastify": "^9.1.3"
70
- },
71
- "devDependencies": {
72
- "@babel/core": "^7.26.0",
73
- "@babel/preset-env": "^7.26.0",
74
- "@babel/preset-react": "^7.26.3",
75
- "@playwright/test": "^1.40.1",
76
- "@svgr/webpack": "^8.1.0",
77
- "@testing-library/jest-dom": "^6.1.5",
78
- "@testing-library/react": "^14.1.2",
79
- "@testing-library/user-event": "^14.5.1",
80
- "@types/react": "^18.2.45",
81
- "babel-loader": "^9.2.1",
82
- "compression-webpack-plugin": "^10.0.0",
83
- "css-loader": "^7.1.2",
84
- "csv-writer": "^1.6.0",
85
- "dotenv-webpack": "^8.1.0",
86
- "eslint": "^8.56.0",
87
- "eslint-config-prettier": "^9.1.0",
88
- "eslint-plugin-import": "^2.29.0",
89
- "eslint-plugin-jsx-a11y": "^6.8.0",
90
- "eslint-plugin-prettier": "^5.0.0",
91
- "eslint-plugin-react": "^7.33.2",
92
- "eslint-plugin-react-hooks": "^4.6.0",
93
- "html-webpack-plugin": "^5.6.3",
94
- "husky": "^8.0.3",
95
- "jest": "^29.7.0",
96
- "jest-environment-jsdom": "^29.7.0",
97
- "lint-staged": "^15.2.0",
98
- "prettier": "^3.1.1",
99
- "sass": "^1.83.4",
100
- "sass-loader": "^16.0.4",
101
- "simple-git": "^3.27.0",
102
- "style-loader": "^4.0.0",
103
- "terser-webpack-plugin": "^5.3.11",
104
- "url-loader": "^4.1.1",
105
- "webpack": "^5.97.1",
106
- "webpack-bundle-analyzer": "^4.10.2",
107
- "webpack-cli": "^6.0.1",
108
- "webpack-dev-server": "^5.2.0"
109
- },
110
- "husky": {
111
- "hooks": {
112
- "pre-commit": "lint-staged"
113
- }
114
- },
115
- "lint-staged": {
116
- "**/*.{js,jsx,ts,tsx,json}": [
117
- "prettier --write",
118
- "eslint --fix"
119
- ]
120
- },
121
- "peerDependencies": {
122
- "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
123
- "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
124
- },
125
- "engines": {
126
- "node": ">=20.0.0",
127
- "npm": ">=10.0.0"
128
- }
129
- }
1
+ {
2
+ "name": "@ilife-tech/react-application-flow-renderer",
3
+ "private": false,
4
+ "version": "1.0.69",
5
+ "description": "A dynamic application flow renderer for React applications with Universal API support(sqv2.0)",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.esm.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "scripts": {
15
+ "start": "webpack serve --mode development --port 3010",
16
+ "build": "webpack --mode production",
17
+ "preview": "webpack serve --mode production",
18
+ "// test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
19
+ "// test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
20
+ "// test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
21
+ "// test:e2e": "playwright test",
22
+ "lint": "eslint src --ext js,jsx",
23
+ "lint:fix": "eslint src --ext js,jsx --fix",
24
+ "format": "prettier --write \"src/**/*.{js,jsx,scss}\"",
25
+ "prepare": "husky install",
26
+ "prepublishOnly": "npm run build",
27
+ "preversion": "npm run lint",
28
+ "version": "npm run format && git add -A src",
29
+ "postversion": "git push && git push --tags",
30
+ "storybook": "storybook dev -p 6006",
31
+ "build-storybook": "storybook build",
32
+ "analyze": "ANALYZE=true npm run build",
33
+ "generate-report": "node scripts/generate-dev-report.js"
34
+ },
35
+ "keywords": [
36
+ "react",
37
+ "form",
38
+ "dynamic",
39
+ "renderer",
40
+ "universal-api",
41
+ "form-builder",
42
+ "react-component",
43
+ "typescript"
44
+ ],
45
+ "author": "iLiFE Technologies",
46
+ "license": "ISC",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/iLife-Technologies/react-dynamic-form-renderer/"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/iLife-Technologies/react-dynamic-form-renderer/issues"
53
+ },
54
+ "homepage": "https://github.com/iLife-Technologies/react-dynamic-form-renderer#readme",
55
+ "dependencies": {
56
+ "@emotion/react": "^11.14.0",
57
+ "@emotion/styled": "^11.14.0",
58
+ "@ilife-tech/react-section-renderer": "^1.0.22",
59
+ "@mui/material": "^6.4.1",
60
+ "dompurify": "^3.2.4",
61
+ "imask": "^7.6.1",
62
+ "inputmask": "^5.0.9",
63
+ "prop-types": "^15.8.1",
64
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
65
+ "react-datepicker": "^8.4.0",
66
+ "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
67
+ "react-imask": "^7.6.1",
68
+ "react-select": "^5.8.0",
69
+ "react-toastify": "^9.1.3"
70
+ },
71
+ "devDependencies": {
72
+ "@babel/core": "^7.26.0",
73
+ "@babel/preset-env": "^7.26.0",
74
+ "@babel/preset-react": "^7.26.3",
75
+ "@playwright/test": "^1.40.1",
76
+ "@svgr/webpack": "^8.1.0",
77
+ "@testing-library/jest-dom": "^6.1.5",
78
+ "@testing-library/react": "^14.1.2",
79
+ "@testing-library/user-event": "^14.5.1",
80
+ "@types/react": "^18.2.45",
81
+ "babel-loader": "^9.2.1",
82
+ "compression-webpack-plugin": "^10.0.0",
83
+ "css-loader": "^7.1.2",
84
+ "csv-writer": "^1.6.0",
85
+ "dotenv-webpack": "^8.1.0",
86
+ "eslint": "^8.56.0",
87
+ "eslint-config-prettier": "^9.1.0",
88
+ "eslint-plugin-import": "^2.29.0",
89
+ "eslint-plugin-jsx-a11y": "^6.8.0",
90
+ "eslint-plugin-prettier": "^5.0.0",
91
+ "eslint-plugin-react": "^7.33.2",
92
+ "eslint-plugin-react-hooks": "^4.6.0",
93
+ "html-webpack-plugin": "^5.6.3",
94
+ "husky": "^8.0.3",
95
+ "jest": "^29.7.0",
96
+ "jest-environment-jsdom": "^29.7.0",
97
+ "lint-staged": "^15.2.0",
98
+ "prettier": "^3.1.1",
99
+ "sass": "^1.83.4",
100
+ "sass-loader": "^16.0.4",
101
+ "simple-git": "^3.27.0",
102
+ "style-loader": "^4.0.0",
103
+ "terser-webpack-plugin": "^5.3.11",
104
+ "url-loader": "^4.1.1",
105
+ "webpack": "^5.97.1",
106
+ "webpack-bundle-analyzer": "^4.10.2",
107
+ "webpack-cli": "^6.0.1",
108
+ "webpack-dev-server": "^5.2.0"
109
+ },
110
+ "husky": {
111
+ "hooks": {
112
+ "pre-commit": "lint-staged"
113
+ }
114
+ },
115
+ "lint-staged": {
116
+ "**/*.{js,jsx,ts,tsx,json}": [
117
+ "prettier --write",
118
+ "eslint --fix"
119
+ ]
120
+ },
121
+ "peerDependencies": {
122
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
123
+ "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
124
+ },
125
+ "engines": {
126
+ "node": ">=20.0.0",
127
+ "npm": ">=10.0.0"
128
+ }
129
+ }