-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "remode",
"version": "0.1.2",
"description": "Based on the hooks to achieve a lightweight state management plan",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.0",
"father": "^2.29.10",
"husky": "^4.3.0",
"lint-staged": "^8.2.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"eslint",
"prettier --write",
"git add"
]
},
"scripts": {
"build": "father build --cjs --esm",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/likun7981/remode"
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"author": "likun7981 <[email protected]>",
"license": "MIT",
"dependencies": {
"deep-diff": "^1.0.2",
"react-fast-compare": "^3.2.0"
},
"files": [
"dist",
"logger.js"
],
"keywords": [
"state",
"redux",
"hook",
"management",
"react",
"model"
]
}