-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "redux-feature-data",
"version": "3.2.1",
"description": "Generic actions, selectors and sagas for react projects using redux, redux-sagas, and normalizr",
"issues": "https://github.com/gkadillak/redux-feature-data/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"keywords": [
"react",
"redux",
"redux-sagas",
"normalizr"
],
"repository": {
"type": "git",
"url": "https://github.com/gkadillak/redux-feature-data.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write .",
"build": "rollup --config rollup.config.js",
"start": "yarn build --watch",
"commit": "cz",
"release": "yarn build && yarn build:docs && yarn standard-version",
"build:docs": "yarn typedoc"
},
"author": "Garrett Kadillak",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"immutable": "^4.0.0-rc.12",
"merge-anything": "^4.0.1",
"normalizr": "^3.6.1",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.21",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "3.3.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"redux-saga-test-plan": "^4.0.1",
"rollup": "^2.42.4",
"standard-version": "^9.1.1",
"typedoc": "^0.20.34",
"typescript": "4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"normalizr": "^3.6.1"
}
}