-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "redux-persist-complex-transform",
"version": "1.0.5",
"description": "This transform allows filter, encrypt, compress, versioning and expiring persisted data from redux-persist. Also works with immutable and seamless-immutable data structures.",
"keywords": [
"redux",
"redux-persist",
"redux-persist-transform",
"versioning",
"expire",
"compress",
"encrypt",
"immutable",
"seamless-immutable"
],
"author": {
"name": "Václav Daněk",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/VaclavDanek/redux-persist-complex-transform",
"repository": {
"type": "git",
"url": "https://github.com/VaclavDanek/redux-persist-complex-transform.git"
},
"bugs": {
"url": "https://github.com/VaclavDanek/redux-persist-complex-transform/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "babel lib --out-dir dist --extensions \".ts,.tsx\" && tsc && minify dist -d dist"
},
"dependencies": {
"redux-persist": "^5.4.0"
},
"optionalDependencies": {
"crypto-js": "^4.0.0",
"fast-safe-stringify": "^2.0.7",
"immutable": "^3.8.2",
"lz-string": "^1.4.4",
"seamless-immutable": "^7.1.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.21.0",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.15.10",
"@types/seamless-immutable": "^7.1.16",
"babel-minify": "^0.5.1",
"typescript": "^5.0.2"
}
}