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