-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "redux-persist-transform-expire-in",
"version": "1.1.2",
"description": "redux-persist transform that reset the persisted redux state after a specific period of time",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,scss,css,md}\"",
"lint": "eslint . --ext .ts",
"prepublish": "npm run build",
"release": "pnpm run build && changeset publish",
"test": "jest",
"test:coverage": "jest --coverage",
"typecheck": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirLisko/redux-persist-transform-expire-in.git"
},
"keywords": [
"redux",
"redux-persist",
"redux-persist-transform",
"expire"
],
"author": "Luca Lischetti <luca@sirlisko.com> (https://sirlisko.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sirLisko/redux-persist-transform-expire-in/issues"
},
"homepage": "https://github.com/sirLisko/redux-persist-transform-expire-in#readme",
"peerDependencies": {
"redux": ">=4",
"redux-persist": ">=5"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"mockdate": "^3.0.5",
"prettier": "^3.0.0",
"react": "^18.2.0",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}