-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "react-arc",
"version": "5.0.0",
"description": "React Abstract Redux Component",
"_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"
},
"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": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"dependencies": {
"axios": "^0.21.1",
"deep-equal": "^1.1.1",
"lodash.clonedeep": "^4.5.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.9",
"@types/deep-equal": "^1.0.4",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"@types/react-redux": "^7.1.18",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typescript": "^4.3.5"
}
}