kitchen-simulator 5.0.0-test.32 → 5.0.0-test.33

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 +13 -38
package/package.json CHANGED
@@ -1,30 +1,15 @@
1
1
  {
2
2
  "name": "kitchen-simulator",
3
- "version": "5.0.0-test.32",
3
+ "version": "5.0.0-test.33",
4
4
  "description": "It is a kitchen simulator.",
5
- "type": "module",
6
5
  "main": "src/index.js",
7
6
  "module": "src/index.js",
8
7
  "exports": {
9
- ".": {
10
- "import": "./src/index.js"
11
- },
12
- "./KitchenConfiguratorApp": {
13
- "import": "./src/KitchenConfiguratorApp.jsx"
14
- }
8
+ ".": { "import": "./src/index.js" },
9
+ "./KitchenConfiguratorApp": { "import": "./src/KitchenConfiguratorApp.jsx" }
15
10
  },
16
-
17
- "files": [
18
- "src",
19
- "README.md",
20
- "LICENSE"
21
- ],
22
-
23
- "sideEffects": [
24
- "*.css",
25
- "*.scss",
26
- "*.sass"
27
- ],
11
+ "files": ["src", "README.md", "LICENSE"],
12
+ "sideEffects": ["*.css", "*.scss", "*.sass"],
28
13
 
29
14
  "scripts": {
30
15
  "start": "webpack-dev-server --config ./webpack.config.js --port 9000 --mode development",
@@ -39,20 +24,6 @@
39
24
  "prepack": "npm run clean"
40
25
  },
41
26
 
42
- "repository": {
43
- "type": "git",
44
- "url": "git+https://github.com/orgs/4DPixel/teams/kitchen-simulator.git"
45
- },
46
- "keywords": ["floorplanner","plan","svg","3d","home design","interior design","react","react-component","react.js","ui","interface","component"],
47
- "license": "MIT",
48
- "bugs": {
49
- "url": "https://github.com/orgs/4DPixel/teams/kitchen-simulator/issues"
50
- },
51
- "maintainers": [
52
- { "url": "https://github.com/softdev1029", "name": "softdev1029" }
53
- ],
54
- "homepage": "/dist",
55
-
56
27
  "dependencies": {
57
28
  "@babel/cli": "^7.24.8",
58
29
  "@material-ui/core": "^4.12.3",
@@ -93,18 +64,16 @@
93
64
  "react-icons": "3.5.0",
94
65
  "react-player": "2.8.0",
95
66
  "react-query": "^3.39.3",
96
- "react-redux": "5.0.7",
97
67
  "react-router-dom": "5.1.2",
98
68
  "react-svg-pan-zoom": "2.18.0",
99
69
  "react-tabs": "3.0.0",
100
70
  "reactjs-popup": "^2.0.4",
101
- "redux": "4.0.1",
102
- "redux-thunk": "2.3.0",
103
71
  "shortid": "2.2.14",
104
72
  "stream-browserify": "^3.0.0",
105
73
  "styled-components": "^5.2.0",
106
74
  "velocity-react": "1.4.3"
107
75
  },
76
+
108
77
  "devDependencies": {
109
78
  "@babel/core": "^7.24.7",
110
79
  "@babel/preset-env": "^7.24.7",
@@ -116,6 +85,8 @@
116
85
  "gh-pages": "2.0.1",
117
86
  "immutable-devtools": "0.1.4",
118
87
  "prettier": "^3.5.3",
88
+ "react": "^16.9.0",
89
+ "react-dom": "16.9.0",
119
90
  "react-container-dimensions": "1.4.1",
120
91
  "rimraf": "2.6.3",
121
92
  "sass": "^1.29.0",
@@ -126,8 +97,12 @@
126
97
  "webpack-cli": "5.1.4",
127
98
  "webpack-dev-server": "5.0.4"
128
99
  },
100
+
129
101
  "peerDependencies": {
130
102
  "react": ">=16.8 || ^17 || ^18",
131
- "react-dom": ">=16.8 || ^17 || ^18"
103
+ "react-dom": ">=16.8 || ^17 || ^18",
104
+ "react-redux": "5.0.7",
105
+ "redux": "4.0.1",
106
+ "redux-thunk": "^2.3.0"
132
107
  }
133
108
  }