-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@ronas-it/rtkq-entity-api",
"version": "0.4.5",
"description": "Wrapper utilities for CRUD operations with REST APIs entities using RTK Query",
"license": "MIT",
"author": "Ronas IT",
"bugs": {
"url": "https://github.com/RonasIT/rtkq-entity-api/issues"
},
"homepage": "https://github.com/RonasIT/rtkq-entity-api/tree/main",
"keywords": [
"react",
"rtkq",
"redux-toolkit",
"query",
"typescript",
"entity",
"crud",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/RonasIT/rtkq-entity-api.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint ./",
"format": "npx prettier --write . && npm run lint -- --fix",
"build": "tsup-node",
"prepack": "npm run build",
"prepare": "husky"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"axios": "^1.7.9",
"axios-observable": "^2.1.0",
"class-transformer": "^0.5.1",
"core-js": "^3.40.0",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"react-redux": "^9.2.0"
},
"peerDependencies": {
"@react-native-community/netinfo": "^11.4.0",
"axios-observable": "^2.1.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/lodash": "^4.17.13",
"@types/luxon": "^3.4.2",
"@types/node": "22.10.2",
"@types/react": "~18.3.18",
"eslint": "9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"tsc-files": "^1.1.4",
"tsup": "^8.3.5",
"type-fest": "^3.13.1",
"typescript": "~5.4.5",
"typescript-eslint": "^8.18.2"
},
"lint-staged": {
"*.{ts,tsx}": "tsc-files --noEmit",
"*.{ts,tsx,js,html,json,md}": "prettier --write",
"*.{ts,tsx,js}": "eslint --cache --fix"
}
}