@nickaux/form-configurator 1.1.168 → 1.1.170

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.
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@nickaux/form-configurator",
3
+ "description": "A React form manager",
4
+ "private": false,
5
+ "version": "1.1.168",
6
+ "source": "./src/FormConfigurator/lib.package.js",
7
+ "type": "module",
8
+ "main": "./dist/FormConfigurator.cjs",
9
+ "module": "./dist/FormConfigurator.module.js",
10
+ "unpkg": "./dist/FormConfigurator.umd.js",
11
+ "scripts": {
12
+ "dev": "vite",
13
+ "build": "VITE_ENV=production microbundle --jsx=React.createElement --css-module true --css inline --no-sourcemap --no-pretty --define process.env.NODE_ENV=\"'production'\"",
14
+ "preview": "vite preview"
15
+ },
16
+ "dependencies": {
17
+ "@yaireo/tagify": "^4.12.0",
18
+ "ace-builds": "^1.23.1",
19
+ "i": "^0.3.7",
20
+ "jsoneditor": "^9.10.0",
21
+ "jsoneditor-react": "^3.1.2",
22
+ "loose-envify": "^1.4.0",
23
+ "npm": "^8.19.4",
24
+ "quill-delta": "^5.0.0",
25
+ "quill-html-edit-button": "^2.2.12",
26
+ "rc-collapse": "^3.1.1",
27
+ "react-circular-progressbar": "^2.0.4",
28
+ "react-dnd": "^14.0.2",
29
+ "react-dnd-html5-backend": "^14.0.0",
30
+ "react-draggable": "^4.4.5",
31
+ "react-number-format": "^5.1.2",
32
+ "react-quill": "^2.0.0",
33
+ "react-router-dom": "^6.3.0",
34
+ "react-tabs": "^3.2.2",
35
+ "react-tag-input": "^6.8.0",
36
+ "remove": "^0.1.5",
37
+ "sass": "^1.69.5",
38
+ "worker-loader": "^3.0.8",
39
+ "worker-plugin": "^5.0.1"
40
+ },
41
+ "peerDependencies": {
42
+ "react": "^18.0.0",
43
+ "react-dom": "^18.0.0"
44
+ },
45
+ "devDependencies": {
46
+ "@brightcove/react-player-loader": "^1.4.1",
47
+ "@vitejs/plugin-react": "^1.3.0",
48
+ "@vitejs/plugin-react-refresh": "^1.3.6",
49
+ "axios": "^0.27.2",
50
+ "deepmerge": "^4.2.2",
51
+ "firebase": "^9.8.4",
52
+ "gsap": "^3.10.4",
53
+ "handlebars": "^4.7.7",
54
+ "html-react-parser": "^1.2.7",
55
+ "microbundle": "^0.15.0",
56
+ "papaparse": "^5.3.2",
57
+ "react": "^18.0.0",
58
+ "react-ace": "^10.1.0",
59
+ "react-beautiful-dnd": "^13.1.0",
60
+ "react-color": "^2.19.3",
61
+ "react-datepicker": "^4.8.0",
62
+ "react-dom": "^18.0.0",
63
+ "react-hook-form": "^7.8.5",
64
+ "react-json-editor-ajrm": "^2.5.13",
65
+ "react-json-pretty": "^2.2.0",
66
+ "react-json-view": "^1.21.3",
67
+ "react-modal": "^3.15.1",
68
+ "react-paginate": "^8.1.2",
69
+ "react-select": "^5.4.0",
70
+ "react-switch": "^7.0.0",
71
+ "react-toggle": "^4.1.2",
72
+ "slate-react": "^0.81.0",
73
+ "uuid": "^8.3.2",
74
+ "uuidv4": "^6.2.10",
75
+ "vite": "^2.9.9",
76
+ "wouter": "^2.8.0-alpha.2"
77
+ }
78
+ }
@@ -0,0 +1,26 @@
1
+ import { defineConfig } from 'vite'
2
+ import react from "@vitejs/plugin-react"
3
+ import { builtinModules } from "module"
4
+
5
+ // https://vitejs.dev/config/
6
+ export default defineConfig({
7
+ build: {
8
+ minify: true,
9
+ mode: "production", // set the mode to "production"
10
+ // rollupOptions: {
11
+ // external: ["ace-builds"].concat(builtinModules),
12
+ // },
13
+ },
14
+ plugins: [
15
+ // looseEnvify({
16
+ // NODE_ENV: "production",
17
+ // global: true,
18
+ // }),
19
+
20
+ react(),
21
+ ],
22
+
23
+ // esbuild: {
24
+ // logOverride: { "this-is-undefined-in-esm": "silent" },
25
+ // },
26
+ })
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@nickaux/form-configurator",
3
3
  "description": "A React form manager",
4
4
  "private": false,
5
- "version": "1.1.168",
5
+ "version": "1.1.170",
6
6
  "source": "./src/FormConfigurator/lib.package.js",
7
7
  "type": "module",
8
8
  "main": "./dist/FormConfigurator.cjs",