-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.45 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
85
86
87
88
89
90
91
92
{
"name": "@someok/simple-reducer-store",
"version": "1.0.5",
"description": "React reducer context store, redux replace",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"homepage": "https://github.com/someok/simple-reducer-store",
"repository": "https://github.com/someok/simple-reducer-store.git",
"author": "JX Wang <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib && rimraf esm",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"build": "yarn build:cjs && yarn build:es",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:types": "tsc --noEmit",
"publish2npm": "yarn build && yarn publish --access public",
"commit": "commit"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier",
"prettier/react",
"plugin:prettier/recommended"
]
},
"eslintIgnore": [
"build/",
"node_modules/"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt-cli": "^11.0.0",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.166",
"@types/react": "^17.0.0",
"@types/redux-logger": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"immer": "^8.0.0",
"lint-staged": "^10.5.3",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-use": "^17.1.1",
"redux-logger": "^3.0.6",
"rimraf": "^3.0.2",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"immer": "^8",
"lodash": "^4",
"react": "^17.0.0 | ^16.8.0",
"react-use": "^17",
"redux-logger": "^3"
},
"files": [
"src",
"lib",
"esm"
],
"keywords": [
"react",
"context",
"reducer",
"store"
]
}