-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
{
"name": "react-arc",
"version": "7.0.1",
"description": "React ARC is a powerful library for building React applications with Redux, providing a set of tools and utilities to enhance development.",
"_main": "lib/index.js",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"check": "npm run typecheck && npm run lint"
},
"prettier": {
"semi": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sunny-fr/react-arc.git"
},
"author": "Alaa El Helw",
"license": "ISC",
"keywords": [
"react",
"redux"
],
"bugs": {
"url": "https://github.com/Sunny-fr/react-arc/issues"
},
"homepage": "https://github.com/Sunny-fr/react-arc#readme",
"peerDependencies": {
"@reduxjs/toolkit": "^2.8.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1"
},
"dependencies": {
"@reduxjs/toolkit": "^2.8.2",
"axios": "1.13.5",
"deep-equal": "^1.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/deep-equal": "^1.0.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/redux-mock-store": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@vitest/ui": "^3.2.4",
"eslint": "^9.33.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^26.1.0",
"react-dom": "^19.1.1",
"redux-mock-store": "^1.5.5",
"redux-thunk": "^3.1.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.0",
"vitest": "^3.2.4"
}
}