@dao42/d42paas-front 0.6.24 → 0.7.3

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dao42/d42paas-front",
3
- "version": "0.6.24",
3
+ "version": "0.7.3",
4
4
  "description": "> TODO: description",
5
5
  "author": "eric183 <kk297466058@gmail.com>",
6
6
  "homepage": "https://github.com/dao42/d42paas_frontend#readme",
@@ -40,14 +40,10 @@
40
40
  "test": "jest --verbose"
41
41
  },
42
42
  "dependencies": {
43
- "@dao42/d42paas_rtc": "^0.1.8",
44
- "@headlessui/react": "^1.4.3",
45
- "@types/jest": "^27.4.0"
43
+ "@dao42/d42paas_rtc": "^0.1.8"
46
44
  },
47
45
  "devDependencies": {
48
- "dayjs": "^1.10.7",
49
- "ts-jest": "^27.1.3",
50
- "typescript": "4.5",
46
+ "@headlessui/react": "^1.4.3",
51
47
  "@babel/core": "^7.9",
52
48
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
53
49
  "@babel/plugin-transform-runtime": "^7.15.0",
@@ -55,6 +51,7 @@
55
51
  "@babel/preset-react": "^7.14.5",
56
52
  "@babel/preset-typescript": "^7.15.0",
57
53
  "@babel/runtime": "^7.15.4",
54
+ "@clintharris/fake-indexeddb": "^3.1.4",
58
55
  "@emotion/babel-plugin": "^11.3.0",
59
56
  "@emotion/babel-preset-css-prop": "^11.2.0",
60
57
  "@emotion/core": "^11.0.0",
@@ -97,6 +94,8 @@
97
94
  "css-loader": "^6.5.1",
98
95
  "css-minimizer-webpack-plugin": "^3.1.4",
99
96
  "cssnano": "^5.0.11",
97
+ "dayjs": "^1.10.7",
98
+ "dexie": "^3.2.0",
100
99
  "dotenv": "^10.0.0",
101
100
  "dotenv-webpack": "^7.0.3",
102
101
  "file-loader": "^6.2.0",
@@ -140,6 +139,7 @@
140
139
  "rxjs": "^7.2.0",
141
140
  "sass": "^1.43.2",
142
141
  "sass-loader": "^12.2.0",
142
+ "showdown": "^2.0.0-alpha",
143
143
  "socket.io": "^4.2.0",
144
144
  "socket.io-client": "^4.2.0",
145
145
  "source-map-loader": "^3.0.0",
@@ -149,9 +149,11 @@
149
149
  "tailwindcss": "^3.0.7",
150
150
  "terser-webpack-plugin": "^5.2.5",
151
151
  "three": "^0.132.2",
152
+ "ts-jest": "^27.1.3",
152
153
  "ts-loader": "^9.2.5",
153
154
  "ts-node": "^10.0.0",
154
155
  "tsconfig-paths-webpack-plugin": "^3.5.1",
156
+ "typescript": "4.5",
155
157
  "uuid": "^8.3.2",
156
158
  "vite": "^2.7.2",
157
159
  "webpack": "^5.52.0",
@@ -175,6 +177,11 @@
175
177
  "url": "https://github.com/dao42/d42paas_frontend/issues"
176
178
  },
177
179
  "jest": {
180
+ "globals": {
181
+ "ts-jest": {
182
+ "tsConfig": "tsconfig.json"
183
+ }
184
+ },
178
185
  "preset": "ts-jest",
179
186
  "testMatch": [
180
187
  "**/__tests__/**/*.ts?(x)",
@@ -187,8 +194,12 @@
187
194
  "^(stores/.+)$": "<rootDir>/src/$1/",
188
195
  "^(views/.+)$": "<rootDir>/src/$1/",
189
196
  "^(assets/.+)$": "<rootDir>/src/$1/",
190
- "^(models/.+)$": "<rootDir>/src/$1/"
191
- }
197
+ "^(models/.+)$": "<rootDir>/src/$1/",
198
+ "^~/(.*)$": "<rootDir>/src/$1"
199
+ },
200
+ "setupFiles": [
201
+ "<rootDir>/__test__/globals-test.ts"
202
+ ]
192
203
  },
193
204
  "gitHead": "492b228acbf6f7bc309984755a8dd948ea6fb0e2"
194
205
  }