@liveblocks/redux 0.18.3-test1 → 0.18.3-test2

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 +9 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/redux",
3
- "version": "0.18.3-test1",
3
+ "version": "0.18.3-test2",
4
4
  "description": "A store enhancer to integrate Liveblocks into Redux stores.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -18,11 +18,12 @@
18
18
  "collaborative"
19
19
  ],
20
20
  "scripts": {
21
+ "dev": "tsup --watch --onSuccess ../../scripts/build.sh",
21
22
  "build": "tsup && ../../scripts/build.sh",
22
23
  "format": "eslint --fix src/ && prettier --write src/",
23
24
  "lint": "eslint src/",
24
- "test": "jest --watch --silent --verbose",
25
- "test-ci": "jest --silent --verbose",
25
+ "test": "jest --silent --verbose",
26
+ "test:watch": "jest --silent --verbose --watch",
26
27
  "dtslint": "dtslint --localTs node_modules/typescript/lib --expectOnly types"
27
28
  },
28
29
  "license": "Apache-2.0",
@@ -32,31 +33,20 @@
32
33
  "directory": "packages/liveblocks-redux"
33
34
  },
34
35
  "dependencies": {
35
- "@liveblocks/core": "0.18.3-test1",
36
- "@liveblocks/client": "0.18.3-test1"
36
+ "@liveblocks/client": "0.18.3-test2",
37
+ "@liveblocks/core": "0.18.3-test2"
37
38
  },
38
39
  "peerDependencies": {
39
40
  "redux": "^4"
40
41
  },
41
42
  "devDependencies": {
42
43
  "@definitelytyped/dtslint": "^0.0.103",
44
+ "@liveblocks/eslint-config": "*",
45
+ "@liveblocks/jest-config": "*",
43
46
  "@reduxjs/toolkit": "^1.7.2",
44
47
  "@testing-library/jest-dom": "^5.16.5",
45
- "@types/jest": "^29.1.2",
46
- "@typescript-eslint/eslint-plugin": "^5.26.0",
47
- "@typescript-eslint/parser": "^5.26.0",
48
- "eslint": "^8.12.0",
49
- "eslint-plugin-import": "^2.26.0",
50
- "eslint-plugin-simple-import-sort": "^7.0.0",
51
- "jest": "^29.1.2",
52
- "jest-environment-jsdom": "^29.1.2",
53
48
  "msw": "^0.36.4",
54
- "prettier": "^2.7.1",
55
- "redux": "^4.1.2",
56
- "ts-jest": "^29.0.3",
57
- "tsup": "^6.2.2",
58
- "typescript": "^4.7.2",
59
- "whatwg-fetch": "^3.6.2"
49
+ "redux": "^4.1.2"
60
50
  },
61
51
  "sideEffects": false
62
52
  }