-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
59
60
61
62
63
64
65
{
"name": "redux-thunk-kit",
"description": "This library provide a way to work with normalized data using redux toolkit ",
"version": "1.0.8",
"author": "Rayyone Ltd.",
"keywords": [
"rayyone",
"redux toolkit",
"normalizr",
"normalized data",
"redux",
"reselect",
"redux thunk kit",
"react",
"react js",
"react native"
],
"license": "MIT",
"repository": {
"url": "git+https://github.com/rayyone/redux-thunk-kit.git",
"type": "git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prettier:write": "npx prettier --write **/*.{js,ts,tsx}",
"lint": "eslint ./src --ext .js,.jsx --fix",
"prepare" : "yarn run build"
},
"dependencies": {
"@reduxjs/toolkit": "1.8.4",
"@types/node": "^18.7.5",
"lodash": "^4.17.21",
"typescript": "^4.1.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.15.0",
"@types/lodash": "^4.14.176",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"normalizr": "^3.6.1",
"prettier": "^2.4.1"
},
"bugs": {
"url": "https://github.com/rayyone/redux-thunk-kit/issues"
},
"homepage": "https://github.com/rayyone/redux-thunk-kit#readme",
"publishConfig": {
"access": "public"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}