-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.52 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.52 KB
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
{
"name": "react-api-kit",
"version": "1.0.0",
"private": true,
"description": "A comprehensive toolkit for handling client-side API interactions in React applications, featuring JWT authentication, token management, polling, state management, and an extensible plugin architecture.",
"type": "module",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git@github.com:enkosi-ventures/react-api-kit.git"
},
"keywords": [
"react",
"jwt",
"authentication",
"api",
"client",
"polling",
"state",
"management",
"plugin"
],
"author": "Enkosi Ventures <enkosiventures@gmail.com>",
"license": "MIT",
"scripts": {
"bootstrap": "npm install",
"build": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"dev": "npm run dev --workspace=@react-api-kit/core",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"test": "vitest run",
"test:watch": "vitest watch",
"format": "npx prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"engines": {
"node": ">=22.13.0",
"npm": ">=10.9.2"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.27.0",
"@eslint/js": "^9.24.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.7",
"@types/node": "^22.14.0",
"@types/react": "^18.3.20",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/eslint-plugin": "^1.1.39",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"lerna": "^8.2.1",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"rollup": "^4.39.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0",
"vitest": "^3.1.1"
}
}